ProcessWire 3.0.43 core updates

ProcessWire 3.0.43

Core updates

This new core version of ProcessWire focuses on resolving several issue reports and integrating pull requests. It also adds some nice upgrades that we'll cover in more detail below. First, here's a list of all that's new in 3.0.43 dev relative to 3.0.42 master:

  • Major updates to the $page->url() method with support for an $options argument. More details in this post.

  • Adds a PR from Marcus Herrmann with accessibility improvements to our bundled site profiles.

  • Adds a PR from Teppo Koivula with fixes to our core CommentsManager module.

  • Adds a PR from Marcus Herrmann with accessibility improvements to the markup output by our MarkupPagerNav module.

  • New /*NoCompile*/ and FileCompiler=? options added to FileCompiler. More details on these at the end of this post.

  • Adjustment to our Field editor module, ProcessField, to make it use more descriptive field type names rather than the Fieldtype class names.

  • Major documentation improvements, plus some optimizations, to the MarkupPagerNav module.

  • Major improvements to our admin touch device support for mobile devices, plus desktop touch devices that also have other input devices (mouse/keyboard).

  • Fix to InputfieldInteger where configuring a min value of 0 without also specifying a max value prevented it from populating the HTML5 min attribute.

  • Fix to InputfieldRepeater where configuring a label that included a count of file or images, i.e. {images.count} interfered with loading of the files in the repeater.

  • Fix an issue with multi-instance support where instances booted with a specific hostname could have a slash missing in URLs.

  • Fixed an issue when booting PW from WordPress on a server that lacks multi-byte string support.

Upgrades to the $page->url() method

The $page->url() method (and property) is probably one of the most used API calls in ProcessWire. Its never done anything other than simply return the URL to the page, so its always been very singular in purpose. In seeing some recent code examples from others (including last weeks ProcessWire Weekly recipe) I realized that this method could really benefit from some more options available… things that could really save developers a lot of time.

ProcessWire 3.0.43 adds a single $options argument to the $page->url() method that enables you to specify a lot of different add-ons for the returned url, like this:

$options = [ ... ]; // Array
echo $page->url($options); 

Here's a look at all of the possible $options as an associative array:

  • pageNum (int|string): Specify pagination number, or "+" for next pagination, or "-" for previous pagination.

  • urlSegmentStr (string): Specify a URL segment string to append.

  • urlSegments (array): Specify array of URL segments to append (may be used instead of urlSegmentStr).

  • data (array): Array of key=value variables to form a query string.

  • http (bool): Specify true to make URL include scheme and hostname (default=false), similar to the $page->httpUrl() method.

  • language (Language): Specify Language object to return URL in that Language, similar to the $page->localUrl() method.

I'm guessing that often you'll only need a single option at once, so the method includes several shortcuts that assume a particular option:

If you specify an integer for options it is assumed to be the pageNum option:

echo $page->url(3); // output: /example/page3

If you specify “+” or “-” for options it is assumed to be the “pageNum” next/previous pagination option. Lets assume we are on pageNum 4 for the example below:

echo $page->url('+'); // output: /example/page5
echo $page->url('-'); // output: /example/page3

If you specify any other string for options it is assumed to be the urlSegmentStr option. Note that the url() method is doing more here than just appending URL segments–it's also sanitizing those segments consistent with page name format.

echo $page->url('foo/bar'); // output: /example/foo/bar/

If you specify a boolean (true) for options it is assumed to be the http option. This would be the same as using the $page->httpUrl() method:

echo $page->url(true); // output: http://domain.com/example/

You can of course specify multiple options too, by using an associative array for the options argument. For example:

echo $page->url([
  'http' => true,
  'pageNum' => 3,
  'urlSegmentStr' => 'foo',
  'data' => [ 'bar' => 'baz' ]
]);
// output: http://domain.com/example/foo/page3?bar=baz

Why not just add URL segments, page numbers and query strings yourself?

As you can see there is a lot of focus on handling page numbers and URL segments in the url() method options. Prior to today, if you needed to add URL segments or page numbers to URLs, you did it manually by appending them to the URL. The trouble is that there are a lot of configurable options around how exactly those should work, such as:

  • Whether a page URL has a trailing slash is configured in template settings.

  • Whether URL segments end with a trailing slash is configured in template settings.

  • Whether page numbers end with a trailing slash is configured in template settings.

  • What text/label prefix is used for page numbers is configured in $config.

  • What text/label prefix is used for each language is configured in the LanguageSupportPageNames module.

  • Whether the URL segments came from user input and need sanitization.

Those are a lot of factors to consider. That's why I thought we really needed something in the core $page->url() method to handle that logic, rather than expecting one to consider all of those things when using URL segments or pagination.

Then there are query strings, like ?process=wire&is=fun. If these are being appended to a URL, then the query string keys and values should be URL encoded. If the URL is being used in output (like in an <a href> tag) then the query string should also be entity encoded. The $page->url() method takes care of these details for you. Note that while URL encoding is always active, the query string is only entity encoded if the page's output formatting state is ON (which is the front-end default).

Note: Our online API reference will show documentation for these updates shortly as well. Users of ProDevTools API Explorer can also see the documentation when running it with ProcessWire 3.0.43+.

New FileCompiler options

These are relatively minor, but may be useful to some of you using ProcessWire 3.x with template compilation enabled. It may also be useful to module developers that are developing modules without using a namespace (to maintain PW 2.x compatibility).

There are some instances where you may want to prevent the FileCompiler from compiling something. ProcessWire lets you exclude entire files from compilation by adding a /*FileCompiler=0*/ comment anywhere in it. However, there have been requests for an additional option to exclude file(s) from compilation before they are even included. Basically, a way to prevent the FileCompiler from even looking at the file, or anything else it loads. This is particularly useful for 3rd party library files.

You can now add a /*NoCompile*/ comment within the include() statement, and FileCompiler will leave the file alone. For instance, lets say you had this include() statement:

include(__DIR__ . '/library/file.php');

Just add the /*NoCompile*/ comment, either at the front or back of it, within the parenthesis:

include(/*NoCompile*/ __DIR__ . '/library/file.php'); // do this…
include(__DIR__ . '/library/file.php' /*NoCompile*/ ); // …or this

We are using include() as an example here, but this also of course works with include_once(), require() and require_once().

What about autoloaded classes? The FileCompiler doesn't get involved with those either way, so FileCompiler is really only applicable to files loaded directly by PW, from template files, modules, and any files manually included from them. The new NoCompile comment now gives you control over how those manual include statements are handled.

How to tell if output from a file is compiled?

Most of you can probably skip this section. But if the headline above reminded you that you've run into this question before, read on…

It's really difficult to tell if output from a file is compiled. That's because part of compilation involves a trick that makes the compiled file think it's in the source location, ensuring that it behaves the same way. You can't simply output something like PHP's __FILE__ constant, or the getcwd() function, because they will both report the file to be in the source location, even if it's actually a compiled copy running elsewhere.

If you have a need to tell if a file is compiled or not, you can now do so by adding FileCompiler=? somewhere in the file. For example:

echo "FileCompiler=?";

If the file is compiled, the output will change to FileCompiler=Yes. If the file is not compiled, it will remain untouched as FileCompiler=?. Chances are you won't ever need this, but I mention it here in case it's helpful to module developers during development, or anyone else that's ever come across the need, like I have.

ProcessWire recipe revisited

Last week the ProcessWire Weekly #133 had a recipe that showed you how to use <link> tags for pagination with rel=next and rel=prev attributes as a technique helpful to search engines. This recipe originated from the great ProcessWire Recipes site. Seeing the cryptic nature of the URL generation and situations where it would break was part of the motivation behind upgrading the $page->url() method as discussed earlier in this post. It wasn't a problem with the recipe, rather the issue was that ProcessWire didn't provide an easy core method for making a pagination URL. With that in mind, let's revisit that recipe to make it a little simpler by using today's updates.

First things first, when doing something like this I prefer using delayed output rather than direct output. That's because you are needing to insert <link> tags in the document <head> that contain data generated from a page finding call that produces output somewhere in the <body>. Meaning, you need to know what's in the <body> before you can generate the <head>. Delayed output makes this a little simpler because everything is generated ahead of time, with all the regions output by a _main.php file (or whatever you decide to name it) at the end.

Lets start with our template file that is generating the paginated items, we'll call it products.php. Since we're using delayed output, I'll use our recently added region() function to hold output. If you don't have the functions API enabled, you can wireRegion() instead.

<?php namespace ProcessWire;

// get items to paginate
$items = $page->children("limit=12");
$paginations = ceil($items->getTotal() / $items->getLimit());

if($input->pageNum > 1) {
  $url = $page->url('-'); // prev pagination URL
  region("head+", "<link rel=prev href=$url>");
}

if($input->pageNum < $paginations) {
  $url = $page->url('+'); // next pagination URL
  region("head+", "<link rel=next href=$url>");
}

// list the items to appear in <body>
foreach($items as $item) {
  region("body+", "<p><a href=$item->url>$item->title</a></p>");
}

// append pagination links
region("body+", $items->renderPager()); 

Next, our _main.php file outputs those regions we generated above. I'm leaving out everything except what's applicable, just to keep it simple:

<?php namespace ProcessWire; ?>
<html>
  <head>
    <?=region('head')?>
  </head>
  <body>
    <?=region('body')?>
  </body>
</html>

That's it for today. Hope you all had a great week, and have a great weekend! See you at the ProcessWire Weekly tomorrow.

Comments

  • Can

    Can

    • 7 years ago
    • 70

    love it!
    especially like new $page->url($options)!
    And the revisited recipe, like the use of the new region() :)
    thumbs up

  • Tom Reno

    Tom Reno

    • 7 years ago
    • 40

    Super useful stuff here. Thanks Ryan and all who contributed.

 

Latest news

  • ProcessWire Weekly #519
    In the 519th issue of ProcessWire Weekly we'll check out a new third party module called RockForms, introduce the latest ProcessWire core updates, and more. Read on!
    Weekly.pw / 20 April 2024
  • ProFields Table Field with Actions support
    This week we have some updates for the ProFields table field (FieldtypeTable). These updates are primarily focused on adding new tools for the editor to facilitate input and management of content in a table field.
    Blog / 12 April 2024
  • Subscribe to weekly ProcessWire news

“The end client and designer love the ease at which they can update the website. Training beyond how to log in wasn’t even necessary since ProcessWire’s default interface is straightforward.” —Jonathan Lahijani