mirror of
https://github.com/processwire/processwire.git
synced 2025-08-09 16:26:59 +02:00
Some minor refactoring in ProcessPageList. Should also fix issue processwire/processwire-issues#1200
This commit is contained in:
@@ -4,6 +4,9 @@
|
||||
* ProcessPageListActions
|
||||
*
|
||||
* @method array getExtraActions(Page $page)
|
||||
* @method array getActions(Page $page)
|
||||
* @method array processAction(Page $page, $action)
|
||||
*
|
||||
*
|
||||
*/
|
||||
class ProcessPageListActions extends Wire {
|
||||
@@ -37,10 +40,22 @@ class ProcessPageListActions extends Wire {
|
||||
parent::wired();
|
||||
}
|
||||
|
||||
/**
|
||||
* Set action labels
|
||||
*
|
||||
* @param array $actionLabels Assoc array of [ name => label ]
|
||||
*
|
||||
*/
|
||||
public function setActionLabels(array $actionLabels) {
|
||||
$this->actionLabels = array_merge($this->actionLabels, $actionLabels);
|
||||
}
|
||||
|
||||
/**
|
||||
* Set whether or not to use trash
|
||||
*
|
||||
* @param bool $useTrash
|
||||
*
|
||||
*/
|
||||
public function setUseTrash($useTrash) {
|
||||
$this->useTrash = (bool) $useTrash;
|
||||
}
|
||||
@@ -109,6 +124,25 @@ class ProcessPageListActions extends Wire {
|
||||
return $actions;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get an array of available extra Page actions
|
||||
*
|
||||
* $returnValue = [
|
||||
* 'actionName' => [
|
||||
* 'cn' => 'ClassName',
|
||||
* 'name => 'action label',
|
||||
* 'url' => 'URL',
|
||||
* 'ajax' => true
|
||||
* ],
|
||||
* 'actionName' => [
|
||||
* …
|
||||
* ],
|
||||
* ];
|
||||
*
|
||||
* @param Page $page
|
||||
* @return array of $label => $url
|
||||
*
|
||||
*/
|
||||
public function ___getExtraActions(Page $page) {
|
||||
|
||||
$extras = array();
|
||||
@@ -221,7 +255,6 @@ class ProcessPageListActions extends Wire {
|
||||
}
|
||||
|
||||
$actions = $this->getExtraActions($page);
|
||||
$success = false;
|
||||
$message = '';
|
||||
$remove = false;
|
||||
$refreshChildren = 0;
|
||||
|
@@ -3,6 +3,9 @@
|
||||
/**
|
||||
* Base class for Page List rendering
|
||||
*
|
||||
* ProcessWire 3.x, Copyright 2020 by Ryan Cramer
|
||||
* https://processwire.com
|
||||
*
|
||||
* @method array getPageActions(Page $page)
|
||||
* @method string getPageLabel(Page $page, array $options = array())
|
||||
* @method int getNumChildren(Page $page, $selector = null) For hooks only, do not call directly
|
||||
@@ -10,20 +13,101 @@
|
||||
*/
|
||||
abstract class ProcessPageListRender extends Wire {
|
||||
|
||||
/**
|
||||
* @var Page
|
||||
*
|
||||
*/
|
||||
protected $page;
|
||||
protected $children;
|
||||
protected $start;
|
||||
protected $limit;
|
||||
protected $pageLabelField = 'title';
|
||||
protected $actionLabels = array();
|
||||
protected $actionTips = array();
|
||||
protected $superuser = false;
|
||||
protected $actions = null;
|
||||
protected $options = array();
|
||||
protected $useTrash = false;
|
||||
protected $qtyType = '';
|
||||
protected $numChildrenHook = false; // is ProcessPageListRender::numChildren() hooked?
|
||||
|
||||
/**
|
||||
* @var PageArray
|
||||
*
|
||||
*/
|
||||
protected $children;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*
|
||||
*/
|
||||
protected $start;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*
|
||||
*/
|
||||
protected $limit;
|
||||
|
||||
/**
|
||||
* @var string Default page label field
|
||||
*
|
||||
*/
|
||||
protected $pageLabelField = 'title';
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*
|
||||
*/
|
||||
protected $actionLabels = array();
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*
|
||||
*/
|
||||
protected $actionTips = array();
|
||||
|
||||
/**
|
||||
* @var bool
|
||||
*
|
||||
*/
|
||||
protected $superuser = false;
|
||||
|
||||
/**
|
||||
* @var ProcessPageListActions|null
|
||||
*
|
||||
*/
|
||||
protected $actions = null;
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*
|
||||
*/
|
||||
protected $options = array();
|
||||
|
||||
/**
|
||||
* @var bool Use trash?
|
||||
*
|
||||
*/
|
||||
protected $useTrash = false;
|
||||
|
||||
/**
|
||||
* @var string Quantity type
|
||||
*
|
||||
*/
|
||||
protected $qtyType = '';
|
||||
|
||||
/**
|
||||
* @var bool is ProcessPageListRender::numChildren() hooked?
|
||||
*
|
||||
*/
|
||||
protected $numChildrenHook = false;
|
||||
|
||||
/**
|
||||
* @var array Field names for page list labels and versions they should translate to
|
||||
*
|
||||
*/
|
||||
protected $translateFields = array(
|
||||
'created' => 'createdStr',
|
||||
'modified' => 'modifiedStr',
|
||||
'published' => 'publishedStr',
|
||||
);
|
||||
|
||||
/**
|
||||
* Construct
|
||||
*
|
||||
* @param Page $page
|
||||
* @param PageArray $children
|
||||
*
|
||||
*/
|
||||
public function __construct(Page $page, PageArray $children) {
|
||||
$this->page = $page;
|
||||
$this->children = $children;
|
||||
@@ -32,6 +116,10 @@ abstract class ProcessPageListRender extends Wire {
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Wired to ProcessWire instance
|
||||
*
|
||||
*/
|
||||
public function wired() {
|
||||
$this->superuser = $this->wire('user')->isSuperuser();
|
||||
$this->actionLabels = array(
|
||||
@@ -56,40 +144,98 @@ abstract class ProcessPageListRender extends Wire {
|
||||
parent::wired();
|
||||
}
|
||||
|
||||
/**
|
||||
* Set option
|
||||
*
|
||||
* @param string $key
|
||||
* @param mixed $value
|
||||
* @return $this
|
||||
*
|
||||
*/
|
||||
public function setOption($key, $value) {
|
||||
$this->options[$key] = $value;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get option
|
||||
*
|
||||
* @param string $key
|
||||
* @return mixed|null
|
||||
*
|
||||
*/
|
||||
public function getOption($key) {
|
||||
return isset($this->options[$key]) ? $this->options[$key] : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set pagination start
|
||||
*
|
||||
* @param int $n
|
||||
*
|
||||
*/
|
||||
public function setStart($n) {
|
||||
$this->start = (int) $n;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set pagination limit
|
||||
*
|
||||
* @param int $n
|
||||
*
|
||||
*/
|
||||
public function setLimit($n) {
|
||||
$this->limit = (int) $n;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set action label by name
|
||||
*
|
||||
* @param string $key
|
||||
* @param string $value
|
||||
*
|
||||
*/
|
||||
public function setLabel($key, $value) {
|
||||
$this->actionLabels[$key] = $value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set whether to use trash
|
||||
*
|
||||
* @param bool $useTrash
|
||||
*
|
||||
*/
|
||||
public function setUseTrash($useTrash) {
|
||||
$this->useTrash = (bool) $useTrash;
|
||||
$this->actions->setUseTrash($this->getUseTrash());
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the default page label field/format
|
||||
*
|
||||
* @param string $pageLabelField
|
||||
*
|
||||
*/
|
||||
public function setPageLabelField($pageLabelField) {
|
||||
$this->pageLabelField = $pageLabelField;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the quantity type
|
||||
*
|
||||
* @param string $qtyType
|
||||
*
|
||||
*/
|
||||
public function setQtyType($qtyType) {
|
||||
$this->qtyType = $qtyType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the ProcessPageListActions instance
|
||||
*
|
||||
* @return null|ProcessPageListActions
|
||||
*
|
||||
*/
|
||||
public function actions() {
|
||||
return $this->actions;
|
||||
}
|
||||
@@ -117,44 +263,112 @@ abstract class ProcessPageListRender extends Wire {
|
||||
*/
|
||||
public function ___getPageLabel(Page $page, array $options = array()) {
|
||||
|
||||
$value = '';
|
||||
$sanitizer = $this->wire()->sanitizer;
|
||||
|
||||
if(strpos($this->pageLabelField, '!') === 0) {
|
||||
// exclamation forces this one to be used, rather than template-specific one
|
||||
$pageLabelField = ltrim($this->pageLabelField, '!');
|
||||
$label = trim(ltrim($this->pageLabelField, '!'));
|
||||
} else {
|
||||
// if the page's template specifies a pageLabelField, use that, if pageLabelField doesn't start with "!" as override
|
||||
$pageLabelField = trim($page->template->pageLabelField);
|
||||
$label = trim($page->template->pageLabelField);
|
||||
// otherwise use the one specified with this instance
|
||||
if(!strlen($label)) $label = $this->pageLabelField;
|
||||
}
|
||||
|
||||
// otherwise use the one specified with this instance
|
||||
if(!strlen($pageLabelField)) $pageLabelField = $this->pageLabelField;
|
||||
if(!strlen($label)) $label = 'name';
|
||||
|
||||
$bracket1 = strpos($pageLabelField, '{');
|
||||
|
||||
if($bracket1 !== false && $bracket1 < strpos($pageLabelField, '}')) {
|
||||
// predefined format string
|
||||
$icon = $page->getIcon();
|
||||
if($icon) $pageLabelField = str_replace(array("fa-$icon", "icon-$icon", " "), array('', '', ' '), $pageLabelField);
|
||||
$icon = $this->getPageLabelIconMarkup($page, $label); // must be called
|
||||
if(!empty($options['noIcon'])) $icon = '';
|
||||
|
||||
while(strpos($label, ' ') !== false) $label = str_replace(' ', ' ', $label);
|
||||
|
||||
$bracket1 = strpos($label, '{');
|
||||
|
||||
if($bracket1 !== false && $bracket1 < strpos($label, '}')) {
|
||||
// predefined format string
|
||||
// adjust string so that it'll work on a single line, without the markup in it
|
||||
$value = $page->getText($pageLabelField, true, true);
|
||||
// if(strpos($value, '</li>')) $value = preg_replace('!</li>\s*<li[^>]*>!', ', ', $value);
|
||||
// $value = trim($this->wire('sanitizer')->entities($value));
|
||||
|
||||
$value = $page->getText($label, true, true); // oneLine=true, entities=true
|
||||
} else {
|
||||
// space delimited list of fields
|
||||
$value = $this->getPageLabelDelimited($page, $label, $options);
|
||||
}
|
||||
|
||||
// CSV or space-separated field or fields
|
||||
$icon = empty($options['noTags']) ? $page->getIcon() : '';
|
||||
if(!strlen($value)) {
|
||||
$value = $sanitizer->entities($page->getUnformatted("title|name"));
|
||||
}
|
||||
|
||||
if(!empty($options['noTags']) && strpos($value, '<') !== false) {
|
||||
// legacy code, appears to be impossible to reach
|
||||
$value = strip_tags($value);
|
||||
}
|
||||
|
||||
return $icon . trim($value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get page label icon and modify $label to remove existing icon references
|
||||
*
|
||||
* @param Page $page
|
||||
* @param string $label
|
||||
* @return string
|
||||
* @since 3.0.163
|
||||
*
|
||||
*/
|
||||
protected function getPageLabelIconMarkup(Page $page, &$label) {
|
||||
|
||||
$icon = $page->getIcon();
|
||||
|
||||
// remove any existing icon references in label
|
||||
if(strpos($label, 'fa-') !== false || strpos($label, 'icon-') !== false) {
|
||||
if(preg_match_all('/\b(?:fa|icon)-([-a-z0-9]+)(?:\s*|\b)/', $label, $matches)) {
|
||||
foreach($matches[0] as $key => $iconFull) {
|
||||
// allow first icon reference to be used if there isn't already one
|
||||
if(!$icon) $icon = $matches[1][$key];
|
||||
$label = str_replace($iconFull, '', $label);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if($icon) {
|
||||
if(!ctype_alnum($icon) && !ctype_alnum(str_replace('-', '', $icon))) {
|
||||
$icon = $this->wire()->sanitizer->name($icon);
|
||||
}
|
||||
$icon = "<i class='icon fa fa-fw fa-$icon'></i>";
|
||||
}
|
||||
|
||||
return $icon;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get page label when label format is space delimited
|
||||
*
|
||||
* @param Page $page
|
||||
* @param string $label
|
||||
* @param array $options
|
||||
* @return string
|
||||
* @since 3.0.163
|
||||
*
|
||||
*/
|
||||
protected function getPageLabelDelimited(Page $page, $label, array $options) {
|
||||
$value = '';
|
||||
|
||||
// convert to array
|
||||
if(strpos($pageLabelField, ' ')) $fields = explode(' ', $pageLabelField);
|
||||
else $fields = array($pageLabelField);
|
||||
if(strpos($label, ' ')) {
|
||||
$fields = explode(' ', $label);
|
||||
} else {
|
||||
$fields = array($label);
|
||||
}
|
||||
|
||||
foreach($fields as $field) {
|
||||
|
||||
if(strpos($field, ".")) {
|
||||
$field = trim($field);
|
||||
|
||||
if(!strlen($field)) {
|
||||
continue;
|
||||
|
||||
} else if(strpos($field, ".")) {
|
||||
list($field, $subfield) = explode(".", $field);
|
||||
if(isset($this->translateFields[$subfield])) $subfield = $this->translateFields[$subfield];
|
||||
|
||||
} else if(strpos($field, 'icon-') === 0 || strpos($field, 'fa-') === 0) {
|
||||
// skip over icons, which we now pull directly from page
|
||||
@@ -164,6 +378,8 @@ abstract class ProcessPageListRender extends Wire {
|
||||
$subfield = '';
|
||||
}
|
||||
|
||||
if(isset($this->translateFields[$field])) $field = $this->translateFields[$field];
|
||||
|
||||
$v = $page->get($field);
|
||||
|
||||
if($subfield && is_object($v)) {
|
||||
@@ -178,43 +394,57 @@ abstract class ProcessPageListRender extends Wire {
|
||||
// unknown
|
||||
$v = (string) $v;
|
||||
}
|
||||
|
||||
} else if(($field == 'created' || $field == 'modified' || $field == 'published') && ctype_digit("$v")) {
|
||||
$v = date($this->wire('config')->dateFormat, (int) $v);
|
||||
}
|
||||
|
||||
if(!strlen("$v")) continue;
|
||||
|
||||
if(empty($options['noTags'])) $value .= "<span class='label_$field'>";
|
||||
else if(strlen($value)) $value .= ", ";
|
||||
if(empty($options['noTags'])) {
|
||||
$value .= "<span class='label_$field'>";
|
||||
} else if(strlen($value)) {
|
||||
$value .= ", ";
|
||||
}
|
||||
|
||||
$value .= htmlspecialchars(strip_tags("$v"), ENT_QUOTES, "UTF-8", false);
|
||||
|
||||
if(empty($options['noTags'])) $value .= "</span>";
|
||||
}
|
||||
|
||||
return $value;
|
||||
}
|
||||
|
||||
if($icon) {
|
||||
$icon = $this->wire('sanitizer')->name($icon);
|
||||
$icon = "<i class='icon fa fa-fw fa-$icon'></i>";
|
||||
} else {
|
||||
$icon = '';
|
||||
}
|
||||
|
||||
if(!strlen($value)) $value = $this->wire('sanitizer')->entities($page->getUnformatted("title|name"));
|
||||
|
||||
if(!empty($options['noTags']) && strpos($value, '<') !== false) {
|
||||
$value = strip_tags($value);
|
||||
}
|
||||
|
||||
return $icon . trim($value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Render child item in page list
|
||||
*
|
||||
* @param Page $page
|
||||
* @return array
|
||||
*
|
||||
*/
|
||||
abstract public function renderChild(Page $page);
|
||||
|
||||
/**
|
||||
* Render page list
|
||||
*
|
||||
* @return string|array
|
||||
*
|
||||
*/
|
||||
abstract public function render();
|
||||
|
||||
/**
|
||||
* Get the name of this renderer (i.e. 'JSON')
|
||||
*
|
||||
* @return string
|
||||
*
|
||||
*/
|
||||
public function getRenderName() {
|
||||
return str_replace('ProcessPageListRender', '', $this->className());
|
||||
}
|
||||
|
||||
/**
|
||||
* Get URL to view more
|
||||
*
|
||||
* @return string
|
||||
*
|
||||
*/
|
||||
public function getMoreURL() {
|
||||
if($this->limit && ($this->numChildren($this->page, 1) > ($this->start + $this->limit))) {
|
||||
$start = $this->start + $this->limit;
|
||||
@@ -223,10 +453,22 @@ abstract class ProcessPageListRender extends Wire {
|
||||
return '';
|
||||
}
|
||||
|
||||
/**
|
||||
* Get children pages
|
||||
*
|
||||
* @return PageArray
|
||||
*
|
||||
*/
|
||||
public function getChildren() {
|
||||
return $this->children;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get whether or not to use trash
|
||||
*
|
||||
* @return bool
|
||||
*
|
||||
*/
|
||||
public function getUseTrash() {
|
||||
return $this->useTrash;
|
||||
}
|
||||
|
@@ -5,11 +5,25 @@ require_once(dirname(__FILE__) . '/ProcessPageListRender.php');
|
||||
/**
|
||||
* JSON implementation of the Page List rendering
|
||||
*
|
||||
* ProcessWire 3.x, Copyright 2020 by Ryan Cramer
|
||||
* https://processwire.com
|
||||
*
|
||||
*
|
||||
*/
|
||||
class ProcessPageListRenderJSON extends ProcessPageListRender {
|
||||
|
||||
/**
|
||||
* System page IDs used in this class
|
||||
*
|
||||
* @var array
|
||||
*
|
||||
*/
|
||||
protected $systemIDs = array();
|
||||
|
||||
/**
|
||||
* Wired to ProcessWire
|
||||
*
|
||||
*/
|
||||
public function wired() {
|
||||
$config = $this->config;
|
||||
$this->systemIDs = array(
|
||||
@@ -21,6 +35,13 @@ class ProcessPageListRenderJSON extends ProcessPageListRender {
|
||||
parent::wired();
|
||||
}
|
||||
|
||||
/**
|
||||
* Render page/child
|
||||
*
|
||||
* @param Page $page
|
||||
* @return array
|
||||
*
|
||||
*/
|
||||
public function renderChild(Page $page) {
|
||||
|
||||
$outputFormatting = $page->outputFormatting;
|
||||
@@ -33,9 +54,13 @@ class ProcessPageListRenderJSON extends ProcessPageListRender {
|
||||
|
||||
if(in_array($page->id, $this->systemIDs)) {
|
||||
$type = 'System';
|
||||
if($page->id == $this->config->http404PageID) $label = $this->_('404 Page Not Found'); // Label for '404 Page Not Found' page in PageList // Overrides page title if used
|
||||
else if($page->id == $this->config->adminRootPageID) $label = $this->_('Admin'); // Label for 'Admin' page in PageList // Overrides page title if used
|
||||
else if($page->id == $this->config->trashPageID && isset($this->actionLabels['trash'])) $label = $this->actionLabels['trash']; // Label for 'Trash' page in PageList // Overrides page title if used
|
||||
if($page->id == $this->config->http404PageID) {
|
||||
$label = $this->_('404 Page Not Found'); // Label for '404 Page Not Found' page in PageList // Overrides page title if used
|
||||
} else if($page->id == $this->config->adminRootPageID) {
|
||||
$label = $this->_('Admin'); // Label for 'Admin' page in PageList // Overrides page title if used
|
||||
} else if($page->id == $this->config->trashPageID && isset($this->actionLabels['trash'])) {
|
||||
$label = $this->actionLabels['trash']; // Label for 'Trash' page in PageList // Overrides page title if used
|
||||
}
|
||||
// if label is not overridden by a language pack, make $label blank to use the page title instead
|
||||
if(in_array($label, array('Trash', 'Admin', '404 Page Not Found'))) $label = '';
|
||||
}
|
||||
@@ -112,11 +137,17 @@ class ProcessPageListRenderJSON extends ProcessPageListRender {
|
||||
return $a;
|
||||
}
|
||||
|
||||
/**
|
||||
* Render page list JSON
|
||||
*
|
||||
* @return string|array
|
||||
*
|
||||
*/
|
||||
public function render() {
|
||||
|
||||
$children = array();
|
||||
$extraPages = array(); // pages forced to bottom of list
|
||||
$config = $this->wire('config');
|
||||
$config = $this->wire()->config;
|
||||
$idTrash = $config->trashPageID;
|
||||
$id404 = $config->http404PageID;
|
||||
|
||||
|
Reference in New Issue
Block a user