Lines Matching defs:plugins
65 * @var string let plugins set their own default without already enabling sorting
72 protected $plugins = [];
80 /** @var array @deprecated 2022-08-17 still used by very old plugins */
100 * These can be overriden by plugins using this class
114 $this->plugins = [
202 //prevent duplicates if adding a column of already listed plugins
203 if (!isset($this->plugins[$plugin]) || !in_array($col, $this->plugins[$plugin])) {
204 $this->plugins[$plugin][] = $col;
224 * (optional) Provide header data, if not given for built-in columns localized strings are used, or for plugins the th() function
302 //for plugins to propose a default value for the sortby flag
369 // check if some plugins are available - if yes, load them!
370 foreach ($this->plugins as $plugin => $columns) {
401 foreach ($this->plugins as $plugin => $columns) {
435 * further key-value pairs for columns set by plugins (optional), if not defined th() and td() of plugin are called
578 foreach ($this->plugins as $plugin => $columns) {
759 * Plugins - respective plugins must be installed!
975 foreach ($this->plugins as $plugin => $columns) {