1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-17 20:11:46 +02:00
This commit is contained in:
Ryan Cramer
2019-02-28 12:20:24 -05:00
parent bb571b66c0
commit fc2103b024

View File

@@ -3,7 +3,7 @@
/** /**
* ProcessWire Page List Process * ProcessWire Page List Process
* *
* Generates the ajax/js hierarchal page lists used throughout ProcessWire * Generates the ajax/js hierarchical page lists used throughout ProcessWire
* *
* For more details about how Process modules work, please see: * For more details about how Process modules work, please see:
* /wire/core/Process.php * /wire/core/Process.php
@@ -40,7 +40,7 @@ class ProcessPageList extends Process implements ConfigurableModule {
public static function getModuleInfo() { public static function getModuleInfo() {
return array( return array(
'title' => 'Page List', 'title' => 'Page List',
'summary' => 'List pages in a hierarchal tree structure', 'summary' => 'List pages in a hierarchical tree structure',
'version' => 122, 'version' => 122,
'permanent' => true, 'permanent' => true,
'permission' => 'page-edit', 'permission' => 'page-edit',
@@ -326,7 +326,7 @@ class ProcessPageList extends Process implements ConfigurableModule {
} }
/** /**
* Get the appropriate PageListRender classs * Get the appropriate PageListRender class
* *
* @param Page $page * @param Page $page
* @param null|int $limit * @param null|int $limit