forked from joomla/Component-Builder
Fixed the filter array checking in the getStoredId method.
This commit is contained in:
parent
029c3f423e
commit
360c61f5da
@ -148,7 +148,7 @@ TODO
|
||||
+ *Version*: 2.12.2
|
||||
+ *Copyright*: Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
|
||||
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
|
||||
+ *Line count*: **289867**
|
||||
+ *Line count*: **290337**
|
||||
+ *Field count*: **1555**
|
||||
+ *File count*: **1923**
|
||||
+ *Folder count*: **316**
|
||||
|
@ -148,7 +148,7 @@ TODO
|
||||
+ *Version*: 2.12.2
|
||||
+ *Copyright*: Copyright (C) 2015 - 2020 Vast Development Method. All rights reserved.
|
||||
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt
|
||||
+ *Line count*: **289867**
|
||||
+ *Line count*: **290337**
|
||||
+ *Field count*: **1555**
|
||||
+ *File count*: **1923**
|
||||
+ *Folder count*: **316**
|
||||
|
@ -5053,7 +5053,7 @@ class Interpretation extends Fields
|
||||
public function setAdminViewDisplayMethod($nameListCode)
|
||||
{
|
||||
$script = '';
|
||||
// add the the new filter methods for the search toolbar above the list view
|
||||
// add the the new filter methods for the search toolbar above the list view (2 = topbar)
|
||||
if (isset($this->adminFilterType[$nameListCode])
|
||||
&& $this->adminFilterType[$nameListCode] == 2)
|
||||
{
|
||||
@ -12035,7 +12035,7 @@ class Interpretation extends Fields
|
||||
|
||||
// build the body
|
||||
$body = array();
|
||||
// check if the filter type is sidebar
|
||||
// check if the filter type is sidebar (1 = sidebar)
|
||||
if (isset($this->adminFilterType[$nameListCode])
|
||||
&& $this->adminFilterType[$nameListCode] == 1)
|
||||
{
|
||||
@ -12075,7 +12075,7 @@ class Interpretation extends Fields
|
||||
$body[] = "<?php else : ?>";
|
||||
$body[] = $this->_t(1) . "<div id=\"j-main-container\">";
|
||||
$body[] = "<?php endif; ?>";
|
||||
// check if the filter type is sidebar
|
||||
// check if the filter type is sidebar (2 = topbar)
|
||||
if (isset($this->adminFilterType[$nameListCode])
|
||||
&& $this->adminFilterType[$nameListCode] == 2)
|
||||
{
|
||||
@ -12088,7 +12088,7 @@ class Interpretation extends Fields
|
||||
$body[] = "?>";
|
||||
}
|
||||
$body[] = "<?php if (empty(\$this->items)): ?>";
|
||||
// check if the filter type is sidebar
|
||||
// check if the filter type is sidebar (1 = sidebar)
|
||||
if (isset($this->adminFilterType[$nameListCode])
|
||||
&& $this->adminFilterType[$nameListCode] == 1)
|
||||
{
|
||||
@ -12101,7 +12101,7 @@ class Interpretation extends Fields
|
||||
. "<?php echo JText::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>";
|
||||
$body[] = $this->_t(1) . "</div>";
|
||||
$body[] = "<?php else : ?>";
|
||||
// check if the filter type is sidebar
|
||||
// check if the filter type is sidebar (1 = sidebar)
|
||||
if (isset($this->adminFilterType[$nameListCode])
|
||||
&& $this->adminFilterType[$nameListCode] == 1)
|
||||
{
|
||||
@ -12135,7 +12135,7 @@ class Interpretation extends Fields
|
||||
$body[] = $this->_t(3) . "\$this->loadTemplate('batch_body')";
|
||||
$body[] = $this->_t(2) . "); ?>";
|
||||
$body[] = $this->_t(1) . "<?php endif; ?>";
|
||||
// check if the filter type is sidebar
|
||||
// check if the filter type is sidebar (1 = sidebar)
|
||||
if (isset($this->adminFilterType[$nameListCode])
|
||||
&& $this->adminFilterType[$nameListCode] == 1)
|
||||
{
|
||||
@ -12175,7 +12175,7 @@ class Interpretation extends Fields
|
||||
$jhtml_sort = "grid.sort";
|
||||
$jhtml_sort_icon = "<i class=\"icon-menu-2\"></i>";
|
||||
$jhtml_sort_icon_2 = "";
|
||||
// for the new filter
|
||||
// for the new filter (2 = topbar)
|
||||
if (isset($this->adminFilterType[$nameListCode])
|
||||
&& $this->adminFilterType[$nameListCode] == 2)
|
||||
{
|
||||
@ -15810,7 +15810,7 @@ class Interpretation extends Fields
|
||||
. $this->setLine(__LINE__) . " Filter by "
|
||||
. ucwords($filter['code']) . ".";
|
||||
// we only add multi filter option if new filter type
|
||||
// and we have multi filter set for this field
|
||||
// and we have multi filter set for this field (2 = topbar)
|
||||
if (isset($this->adminFilterType[$nameListCode])
|
||||
&& $this->adminFilterType[$nameListCode] == 2
|
||||
&& isset($filter['multi'])
|
||||
@ -17671,7 +17671,7 @@ class Interpretation extends Fields
|
||||
$this->filterBuilder[$nameListCode]
|
||||
))
|
||||
{
|
||||
// set the function or file path
|
||||
// set the function or file path (2 = topbar)
|
||||
$funtion_path = true;
|
||||
if (isset($this->adminFilterType[$nameListCode])
|
||||
&& $this->adminFilterType[$nameListCode] == 2)
|
||||
@ -18121,7 +18121,7 @@ class Interpretation extends Fields
|
||||
);
|
||||
// add the category filter stuff
|
||||
$this->setCategorySidebarFilterHelper($fieldFilters, $nameListCode);
|
||||
// check if filter fields are added
|
||||
// check if filter fields are added (1 = sidebar)
|
||||
if (isset($this->adminFilterType[$nameListCode])
|
||||
&& $this->adminFilterType[$nameListCode] == 1
|
||||
&& isset($this->filterBuilder[$nameListCode])
|
||||
@ -18289,7 +18289,7 @@ class Interpretation extends Fields
|
||||
protected function setDefaultSidebarFilterHelper(&$filter, &$nameSingleCode,
|
||||
&$nameListCode
|
||||
) {
|
||||
// add the default filters if we are on the old filter paths
|
||||
// add the default filters if we are on the old filter paths (1 = sidebar)
|
||||
if (isset($this->adminFilterType[$nameListCode])
|
||||
&& $this->adminFilterType[$nameListCode] == 1)
|
||||
{
|
||||
@ -18337,7 +18337,7 @@ class Interpretation extends Fields
|
||||
*/
|
||||
protected function setCategorySidebarFilterHelper(&$filter, &$nameListCode)
|
||||
{
|
||||
// add the category filter if we are on the old filter paths
|
||||
// add the category filter if we are on the old filter paths (1 = sidebar)
|
||||
if (isset($this->adminFilterType[$nameListCode])
|
||||
&& $this->adminFilterType[$nameListCode] == 1
|
||||
&& isset($this->categoryBuilder[$nameListCode])
|
||||
@ -18384,7 +18384,7 @@ class Interpretation extends Fields
|
||||
$this->filterBuilder[$nameListCode]
|
||||
))
|
||||
{
|
||||
// check if we should add some help to get the values
|
||||
// check if we should add some help to get the values (2 = topbar)
|
||||
$get_values = false;
|
||||
if (isset($this->adminFilterType[$nameListCode])
|
||||
&& $this->adminFilterType[$nameListCode] == 2)
|
||||
@ -20479,6 +20479,8 @@ class Interpretation extends Fields
|
||||
*/
|
||||
public function setStoredId(&$nameSingleCode, &$nameListCode)
|
||||
{
|
||||
// set component name
|
||||
$Component = ucwords($this->componentCodeName);
|
||||
// keep track of all fields already added
|
||||
$donelist = array('id' => true, 'search' => true,
|
||||
'published' => true, 'access' => true,
|
||||
@ -20489,22 +20491,70 @@ class Interpretation extends Fields
|
||||
. "\$id .= ':' . \$this->getState('filter.id');";
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "\$id .= ':' . \$this->getState('filter.search');";
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "\$id .= ':' . \$this->getState('filter.published');";
|
||||
// add this if not already added
|
||||
if (!isset($this->fieldsNames[$nameSingleCode]['published']))
|
||||
{
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "\$id .= ':' . \$this->getState('filter.published');";
|
||||
}
|
||||
// add if view calls for it, and not already added
|
||||
if (isset($this->accessBuilder[$nameSingleCode])
|
||||
&& ComponentbuilderHelper::checkString(
|
||||
$this->accessBuilder[$nameSingleCode]
|
||||
))
|
||||
)
|
||||
&& !isset($this->fieldsNames[$nameSingleCode]['access']))
|
||||
{
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "\$id .= ':' . \$this->getState('filter.access');";
|
||||
// the side bar option is single
|
||||
if (isset($this->adminFilterType[$nameListCode])
|
||||
&& $this->adminFilterType[$nameListCode] == 1)
|
||||
{
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "\$id .= ':' . \$this->getState('filter.access');";
|
||||
}
|
||||
else
|
||||
{
|
||||
// top bar selection can result in
|
||||
// an array due to multi selection
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "//" . $this->setLine(__LINE__)
|
||||
. " Check if the value is an array";
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "\$_filter = \$this->getState('filter.access');";
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "if (" . $Component . "Helper::checkArray(\$_filter))";
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "{";
|
||||
$stored .= PHP_EOL . $this->_t(3)
|
||||
. "\$id .= ':' . implode(':', \$_filter);";
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "}";
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "//" . $this->setLine(__LINE__)
|
||||
. " This should not happen, but we try";
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "elseif (is_numeric(\$_filter))";
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "{";
|
||||
$stored .= PHP_EOL . $this->_t(3)
|
||||
. "\$id .= ':' . \$_filter;";
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "}";
|
||||
}
|
||||
}
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "\$id .= ':' . \$this->getState('filter.ordering');";
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "\$id .= ':' . \$this->getState('filter.created_by');";
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "\$id .= ':' . \$this->getState('filter.modified_by');";
|
||||
// add this if not already added
|
||||
if (!isset($this->fieldsNames[$nameSingleCode]['created_by']))
|
||||
{
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "\$id .= ':' . \$this->getState('filter.created_by');";
|
||||
}
|
||||
// add this if not already added
|
||||
if (!isset($this->fieldsNames[$nameSingleCode]['modified_by']))
|
||||
{
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "\$id .= ':' . \$this->getState('filter.modified_by');";
|
||||
}
|
||||
// add the rest of the set filters
|
||||
if (isset($this->filterBuilder[$nameListCode])
|
||||
&& ComponentbuilderHelper::checkArray(
|
||||
@ -20516,7 +20566,7 @@ class Interpretation extends Fields
|
||||
if (!isset($donelist[$filter['code']]))
|
||||
{
|
||||
$stored .= $this->getStoredIdCode(
|
||||
$filter
|
||||
$filter, $Component
|
||||
);
|
||||
$donelist[$filter['code']] = true;
|
||||
}
|
||||
@ -20533,7 +20583,7 @@ class Interpretation extends Fields
|
||||
if (!isset($donelist[$filter['code']]))
|
||||
{
|
||||
$stored .= $this->getStoredIdCode(
|
||||
$filter
|
||||
$filter, $Component
|
||||
);
|
||||
$donelist[$filter['code']] = true;
|
||||
}
|
||||
@ -20546,12 +20596,13 @@ class Interpretation extends Fields
|
||||
/**
|
||||
* Add the code of the stored ids
|
||||
*
|
||||
* @param array $filter The field/filter array
|
||||
* @param array $filter The field/filter array
|
||||
* @param string $Component The Component name
|
||||
*
|
||||
* @return string The code for the stored IDs
|
||||
*
|
||||
*/
|
||||
protected function getStoredIdCode(&$filter)
|
||||
protected function getStoredIdCode(&$filter, &$Component)
|
||||
{
|
||||
if ($filter['type'] === 'category')
|
||||
{
|
||||
@ -20568,9 +20619,43 @@ class Interpretation extends Fields
|
||||
}
|
||||
else
|
||||
{
|
||||
$stored = PHP_EOL . $this->_t(2)
|
||||
. "\$id .= ':' . \$this->getState('filter."
|
||||
. $filter['code'] . "');";
|
||||
if ($filter['multi'] == 2)
|
||||
{
|
||||
// top bar selection can result in
|
||||
// an array due to multi selection
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "//" . $this->setLine(__LINE__)
|
||||
. " Check if the value is an array";
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "\$_" . $filter['code'] . " = \$this->getState('filter."
|
||||
. $filter['code'] . "');";
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "if (" . $Component . "Helper::checkArray(\$_"
|
||||
. $filter['code'] . "))";
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "{";
|
||||
$stored .= PHP_EOL . $this->_t(3)
|
||||
. "\$id .= ':' . implode(':', \$_" . $filter['code'] . ");";
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "}";
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "//" . $this->setLine(__LINE__)
|
||||
. " This should not happen, but we try";
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "elseif (is_numeric(\$_" . $filter['code'] . "))";
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "{";
|
||||
$stored .= PHP_EOL . $this->_t(3)
|
||||
. "\$id .= ':' . \$_" . $filter['code'] . ";";
|
||||
$stored .= PHP_EOL . $this->_t(2)
|
||||
. "}";
|
||||
}
|
||||
else
|
||||
{
|
||||
$stored = PHP_EOL . $this->_t(2)
|
||||
. "\$id .= ':' . \$this->getState('filter."
|
||||
. $filter['code'] . "');";
|
||||
}
|
||||
}
|
||||
|
||||
return $stored;
|
||||
@ -20915,7 +21000,7 @@ class Interpretation extends Fields
|
||||
$state = '';
|
||||
// keep track of all fields already added
|
||||
$donelist = array();
|
||||
// we must add the formSubmited code if new above filters is used
|
||||
// we must add the formSubmited code if new above filters is used (2 = topbar)
|
||||
$new_filter = false;
|
||||
if (isset($this->adminFilterType[$nameListCode])
|
||||
&& $this->adminFilterType[$nameListCode] == 2)
|
||||
@ -21985,7 +22070,7 @@ class Interpretation extends Fields
|
||||
*/
|
||||
protected function setChosenMultiSelectionHeaders(&$headers, $nameListCode)
|
||||
{
|
||||
// check that the filter type is the new filter option
|
||||
// check that the filter type is the new filter option (2 = topbar)
|
||||
if (isset($this->adminFilterType[$nameListCode])
|
||||
&& $this->adminFilterType[$nameListCode] == 2)
|
||||
{
|
||||
|
@ -679,12 +679,32 @@ class ComponentbuilderModelAdmin_views extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
$id .= ':' . $this->getState('filter.add_fadein');
|
||||
$id .= ':' . $this->getState('filter.type');
|
||||
// Check if the value is an array
|
||||
$_type = $this->getState('filter.type');
|
||||
if (ComponentbuilderHelper::checkArray($_type))
|
||||
{
|
||||
$id .= ':' . implode(':', $_type);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_type))
|
||||
{
|
||||
$id .= ':' . $_type;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.add_custom_button');
|
||||
$id .= ':' . $this->getState('filter.add_php_ajax');
|
||||
$id .= ':' . $this->getState('filter.add_custom_import');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelAdmins_custom_tabs extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelAdmins_fields extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelAdmins_fields_conditions extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelAdmins_fields_relations extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -284,7 +284,17 @@ class ComponentbuilderModelClass_extendings extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -457,7 +457,17 @@ class ComponentbuilderModelClass_methods extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -455,7 +455,17 @@ class ComponentbuilderModelClass_properties extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelComponents_admin_views extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelComponents_config extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelComponents_custom_admin_menus extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelComponents_custom_admin_views extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelComponents_dashboard extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelComponents_files_folders extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelComponents_modules extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelComponents_mysql_tweaks extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelComponents_placeholders extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelComponents_plugins extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelComponents_site_views extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelComponents_updates extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -513,7 +513,17 @@ class ComponentbuilderModelCustom_admin_views extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -549,7 +549,17 @@ class ComponentbuilderModelCustom_codes extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -464,7 +464,17 @@ class ComponentbuilderModelDynamic_gets extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -632,7 +632,17 @@ class ComponentbuilderModelFields extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -393,7 +393,17 @@ class ComponentbuilderModelFieldtypes extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -2511,7 +2511,17 @@ class ComponentbuilderModelJoomla_components extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -290,7 +290,17 @@ class ComponentbuilderModelJoomla_modules extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelJoomla_modules_files_folders_urls extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelJoomla_modules_updates extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -231,7 +231,17 @@ class ComponentbuilderModelJoomla_plugin_groups extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -451,7 +451,17 @@ class ComponentbuilderModelJoomla_plugins extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelJoomla_plugins_files_folders_urls extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelJoomla_plugins_updates extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -450,7 +450,17 @@ class ComponentbuilderModelLanguage_translations extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -476,7 +476,17 @@ class ComponentbuilderModelLanguages extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -445,7 +445,17 @@ class ComponentbuilderModelLayouts extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -377,7 +377,17 @@ class ComponentbuilderModelLibraries extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelLibraries_config extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -204,7 +204,17 @@ class ComponentbuilderModelLibraries_files_folders_urls extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -357,7 +357,17 @@ class ComponentbuilderModelPlaceholders extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -472,7 +472,17 @@ class ComponentbuilderModelServers extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -521,7 +521,17 @@ class ComponentbuilderModelSite_views extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -231,7 +231,17 @@ class ComponentbuilderModelSnippet_types extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -535,7 +535,17 @@ class ComponentbuilderModelSnippets extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -445,7 +445,17 @@ class ComponentbuilderModelTemplates extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
@ -355,7 +355,17 @@ class ComponentbuilderModelValidation_rules extends JModelList
|
||||
$id .= ':' . $this->getState('filter.id');
|
||||
$id .= ':' . $this->getState('filter.search');
|
||||
$id .= ':' . $this->getState('filter.published');
|
||||
$id .= ':' . $this->getState('filter.access');
|
||||
// Check if the value is an array
|
||||
$_filter = $this->getState('filter.access');
|
||||
if (ComponentbuilderHelper::checkArray($_filter))
|
||||
{
|
||||
$id .= ':' . implode(':', $_filter);
|
||||
}
|
||||
// This should not happen, but we try
|
||||
elseif (is_numeric($_filter))
|
||||
{
|
||||
$id .= ':' . $_filter;
|
||||
}
|
||||
$id .= ':' . $this->getState('filter.ordering');
|
||||
$id .= ':' . $this->getState('filter.created_by');
|
||||
$id .= ':' . $this->getState('filter.modified_by');
|
||||
|
Loading…
Reference in New Issue
Block a user