ProcessWire 3.0.117 core updates

ProcessWire 3.0.117

Work continued this week on development of the new ProcessWire.com website and that's where much of my time went. I've got all the posts in this blog section converted over, as well as the entire ProcessWire 3.x API site running in the new templates. Next week I'll be working on the rest of the documentation section, where quite a few things are moving around. Some of the core updates this week are related to needs that came up during site development, and this post covers a few of them below.

New “pw-optional” attribute for markup regions

When defining markup regions, you can now specify a "pw-optional" or "data-pw-optional" attribute with your region. When present, the region will be removed if it is not populated by the time the page is rendered. Here's an example from the new processwire.com site templates. We've got this code somewhere in our _main.php file:

html<div uk-grid>
  <div id='content' class='uk-width-expand'>
    <?=$page->body?>
  </div>
  <div id='sidebar' class='uk-width-1-3' pw-optional>
  </div>
</div>

Note that empty #sidebar div with the pw-optional boolean attribute. If no template files populate that particular markup region, then the entire <div id='sidebar'></div> gets removed from the markup, and the #content div fills out the entire width. On the other hand, if the #sidebar is populated, then the sidebar appears in the output. For example, let's say that we have a /blog/ index page lists links to all the blog categories in the sidebar. Here's what's in our blog.php template file:

html<div id='sidebar'>
  <h3>Categories</h3>
  <ul class='uk-nav'>
    <?php
    $categories = $pages->get('/blog/categories/');
    echo $categories->each("<li><a href='{url}'>{title}</a>");
    ?>
  </ul>
</div> 

In the example above, the sidebar is populated and thus appears in the output, with the #content column consuming 2/3 columns, and the sidebar consuming 1/3 columns.

Without the pw-optional attribute in our _main.php #sidebar region definition, that #sidebar div would always be consuming 1/3 columns, even if it hadn't been populated with anything. The pw-optional attribute can be quite useful in a lot of cases, and encourages keeping the primary markup structure in your _main.php (or files included from it). I've already found it quite useful in development of the new site. Next time you are working with markup regions, consider trying it out.

WireArray is now more useful

You might have heard of the WireArray class, which is the foundation for all of ProcessWire's various collections of items (such as PageArray, and numerous others). The actual WireArray class isn't used very often on its own, and instead mostly serves as a common base for derived classes.

Part of the reason for that is that the WireArray class can only store objects derived from the Wire class. So if you wanted to use WireArray for some other kind of data type (like strings or numbers) you would have had to extend the WireArray class and implement various methods to create your own derivative of it.

Now WireArray can be used on its own with just about any data type. No longer is this base class limited to working with just Wire-derived objects. That's a good thing, because WireArray has a lot of useful methods already built-in, and thus can often be more handy than using a regular PHP array.

As a really simple example, lets use WireArray to hold some strings, such as CSS filenames. And then lets use the built-in each() method to output them:

$styles = new WireArray();
$styles->add('mystyles.css');
$styles->add('yourstyles.css');
$styles->prepend('firststyles.css');

echo $styles->each(function($file) {
  return "<link rel='stylesheet' href='$file'>";
}); 

Another update to WireArray (and all WireArray derived types) is that you can now create a new WireArray and add items to it in the same call, using the static new() method:

$styles = WireArray::new([ 'a.css', 'b.css', 'c.css' ]); 

In the above example, we provided it with 3 items to add, via a regular PHP array. However, you can make it even simpler and provide them as arguments (as many or as few as you want):

$styles = WireArray::new('a.css', 'b.css', 'c.css');

And just to complete our example, we'll output them. The following renders a <link> tag for each of the css files:

echo $styles->each("<link rel='stylesheet' href='{value}'>"); 

The examples above are all really basic, so also wanted to mention that WireArray works as an associative array too (though it has always been the case):

$contact = WireArray::new([
  'address' => '123 Peachtree Rd.',
  'city' => 'Atlanta',
  'state' => 'GA',
  'zip' => '30307'
]);

$contact->set('zip', '30307');
$contact['country'] = 'US';

echo $contact->each("<li>{key}: {value}"); 

Other updates

In addition to the above updates, version 3.0.117 also improves upon the PagesExportImport class and related Process module for exporting/importing pages. I ran into a small issue with some image and href links breaking in my textarea fields in the blog, when exporting and then importing into the new site. That's because the new development site runs off a subdirectory, while the current live site does not. So the export/import functions now keep track of domain/host they are running at, as well as the root URL, and make adjustments as needed to textarea fields containing HTML, ensuring that local links are never broken by the export/import process.

The blog here (and actually the entire site) contains a lot of user comments powered by ProcessWire's FieldtypeComments. Of course these have to be exported and imported along with the rest of the page data. All of that went perfectly, without any hiccups, using the built-in page export/import functions. But I wanted to make a lot of upgrades to the output of the comments markup, so several updates were made to the core FieldtypeComments classes in order to support further customization and configuration.

That's all for this week. As mentioned earlier, next week I'm going to be working on the documentation section of the new site, along with likely another core version on the dev branch, as usual. Thanks for reading. Enjoy reading the ProcessWire Weekly, and have a great weekend!

Comments

  • HMCB

    HMCB

    • 5 years ago
    • 41

    Thanks for your continued work. I need to dig into Markup Regions.

  • Bernhard

    Bernhard

    • 5 years ago
    • 00

    Was also wondering about that... What about this?

    $foo = new WireArray('one','two','three');

    The updates to markup regions are great, love them :)

  • Teppo

    Teppo

    • 5 years ago
    • 61

    Hey Ryan!

    I love the fact that WireArray is now more useful in itself, but can't help wondering about the introduction of the static "new" method:

    This seems to be a new concept in the context of ProcessWire, while a constructor that takes params would've seemed like the consistent choice. For an example, If I wanted a new PageArray for storing pages, I'd call "new PageArray", and not "PageArray::new()".

    Was there a reason a constructor wouldn't have worked, or am I missing something else here? Thanks in advance :)

    • ryan

      ryan

      • 5 years ago
      • 21

      WireArray is a base class in PW for all different types of WireArray classes—PageArray, Fieldgroup, Selectors, Pagefiles, Notices, Fieldtypes, Modules, FieldsArray, FieldtypeArray, InputfieldArray, and on and on. Many of which have their own unique constructor arguments, specific to the purpose of each class (most of the time they are optional arguments). The benefit of the WireArray::new() is that is can be consistent on all of the WireArray types. That consistency wouldn't be possible if we were using the constructor. It's perfectly fine to create any WireArray type using "new AnyWireArrayType()" as always, but if you want to create one and add items to it at the same time, then the AnyWireArrayType::new() makes that possible, where the constructor wouldn't.

  • Nikolaus Rademacher

    Good to hear that Export/Import is scaling perfectly and working without any errors on such huge pages as well. This again proves the very good work you and the core team do :)

    Wondering how complicated it would be to use the feature in order to create multiple instances of ProcessWire with rollout functionalities, e.g. "Author" and "Publisher" instances (where data can be edited in the Author system and then deployed to the read-only Publisher via a Deploy option).

    To me it sounds like ProcessWire is not far from a full-grown Enterprise CMS ????

    • ryan

      ryan

      • 5 years ago
      • 61

      This publishing between multiple installations is something I've been really interested in, ever since implementing it for a client several years ago (well before the PagesExportImport functions were in the core). It was what the client needed, because they had several PW sites that needed to share the same data, but they wanted to manage it all from a single PW installation.

      Were we to do it now, the PagesExportImport class/features would be the foundation for publishing between sites. I mentioned "class/features", because it's not just the PagesExportImport class that does this, but rather than feature is now deeply ingrained into the entire core, especially on the Fieldtype interface, so that all fields know how to export and import themselves.

      Technically it would already be possible to support publishing between installations, though one would have to use the API of the PagesExportImport class to code it for a specific site. Though it would be far easier to implement now than it used to be (since it's now at the core level). What's still challenging is building something more general purpose (like a module) that would support it happening anywhere on a turn-key fashion. But it is something I still plan and hope to build before long.

 

PrevRebuilding the ProcessWire.com website (part 1)

7

This post contains an introduction to our plans for rebuilding the ProcessWire.com website. In part one, we take a look at the initial strategy, framework, and concept for the new site, primarily from the development side. More 

Latest news

  • ProcessWire Weekly #514
    In the 514th issue of ProcessWire Weekly we'll check out the latest blog post from Ryan, introduce two new third party modules — Page List Versions Counter and Fieldtype Fieldset Panel — and more. Read on!
    Weekly.pw / 16 March 2024
  • Invoices Site Profile
    The new invoices site profile is a free invoicing application developed in ProcessWire. It enables you to create invoices, record payments to them, email invoices to clients, print invoices, and more. This post covers all the details.
    Blog / 15 March 2024
  • Subscribe to weekly ProcessWire news

“Yesterday I sent the client a short documentation for their ProcessWire-powered website. Today all features already used with no questions. #cmsdoneright—Marc Hinse, Web designer/developer