update
This commit is contained in:
parent
42954cce93
commit
7c00f68553
@ -1,14 +1,14 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<extension type="plugin" version="4" group="content" method="upgrade">
|
<extension type="plugin" version="4" group="content" method="upgrade">
|
||||||
<name>PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS</name>
|
<name>PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS</name>
|
||||||
<creationDate>10th March, 2022</creationDate>
|
<creationDate>9th May, 2022</creationDate>
|
||||||
<author>Llewellyn van der Merwe</author>
|
<author>Llewellyn van der Merwe</author>
|
||||||
<authorEmail>joomla@vdm.io</authorEmail>
|
<authorEmail>joomla@vdm.io</authorEmail>
|
||||||
<authorUrl>https://dev.vdm.io</authorUrl>
|
<authorUrl>https://dev.vdm.io</authorUrl>
|
||||||
<copyright>Copyright (C) 2015 Vast Development Method. All rights reserved.</copyright>
|
<copyright>Copyright (C) 2015 Vast Development Method. All rights reserved.</copyright>
|
||||||
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
|
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
|
||||||
<version>1.0.4</version>
|
<version>1.0.4</version>
|
||||||
<description>PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_XML_DESCRIPTION</description>
|
<description>PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_XML_DESCRIPTION</description>
|
||||||
|
|
||||||
<!-- Scripts to run on installation -->
|
<!-- Scripts to run on installation -->
|
||||||
<scriptfile>script.php</scriptfile>
|
<scriptfile>script.php</scriptfile>
|
||||||
|
@ -82,7 +82,7 @@ class JFormFieldPowers extends JFormFieldList
|
|||||||
if ($user->authorise('power.create', 'com_componentbuilder') && $app->isAdmin()) // TODO for now only in admin area.
|
if ($user->authorise('power.create', 'com_componentbuilder') && $app->isAdmin()) // TODO for now only in admin area.
|
||||||
{
|
{
|
||||||
// build Create button
|
// build Create button
|
||||||
$button[] = '<a id="'.$button_code_name.'Create" class="btn btn-small btn-success hasTooltip" title="'.JText::sprintf('PLG_CONTENTCOMPONENTBUILDERCOMPONENTHEADERSTABS_CREATE_NEW_S', $button_label).'" style="border-radius: 0px 4px 4px 0px; padding: 4px 4px 4px 7px;"
|
$button[] = '<a id="'.$button_code_name.'Create" class="btn btn-small btn-success hasTooltip" title="'.JText::sprintf('PLG_CONTENT_COMPONENTBUILDERCOMPONENTHEADERSTABS_CREATE_NEW_S', $button_label).'" style="border-radius: 0px 4px 4px 0px; padding: 4px 4px 4px 7px;"
|
||||||
href="index.php?option=com_componentbuilder&view=power&layout=edit'.$ref.'" >
|
href="index.php?option=com_componentbuilder&view=power&layout=edit'.$ref.'" >
|
||||||
<span class="icon-new icon-white"></span></a>';
|
<span class="icon-new icon-white"></span></a>';
|
||||||
}
|
}
|
||||||
@ -90,7 +90,7 @@ class JFormFieldPowers extends JFormFieldList
|
|||||||
if ($user->authorise('power.edit', 'com_componentbuilder') && $app->isAdmin()) // TODO for now only in admin area.
|
if ($user->authorise('power.edit', 'com_componentbuilder') && $app->isAdmin()) // TODO for now only in admin area.
|
||||||
{
|
{
|
||||||
// build edit button
|
// build edit button
|
||||||
$button[] = '<a id="'.$button_code_name.'Edit" class="btn btn-small hasTooltip" title="'.JText::sprintf('PLG_CONTENTCOMPONENTBUILDERCOMPONENTHEADERSTABS_EDIT_S', $button_label).'" style="display: none; padding: 4px 4px 4px 7px;" href="#" >
|
$button[] = '<a id="'.$button_code_name.'Edit" class="btn btn-small hasTooltip" title="'.JText::sprintf('PLG_CONTENT_COMPONENTBUILDERCOMPONENTHEADERSTABS_EDIT_S', $button_label).'" style="display: none; padding: 4px 4px 4px 7px;" href="#" >
|
||||||
<span class="icon-edit"></span></a>';
|
<span class="icon-edit"></span></a>';
|
||||||
// build script
|
// build script
|
||||||
$script[] = "
|
$script[] = "
|
||||||
@ -144,7 +144,7 @@ class JFormFieldPowers extends JFormFieldList
|
|||||||
// Get the databse object.
|
// Get the databse object.
|
||||||
$db = JFactory::getDBO();
|
$db = JFactory::getDBO();
|
||||||
$query = $db->getQuery(true);
|
$query = $db->getQuery(true);
|
||||||
$query->select($db->quoteName(array('a.id','a.system_name','a.name','a.type','a.power_version'),array('id','power_admin_component_system_name','name','type','version')));
|
$query->select($db->quoteName(array('a.guid','a.system_name','a.name','a.type','a.power_version'),array('guid','power_admin_component_system_name','name','type','version')));
|
||||||
$query->from($db->quoteName('#__componentbuilder_power', 'a'));
|
$query->from($db->quoteName('#__componentbuilder_power', 'a'));
|
||||||
$query->where($db->quoteName('a.published') . ' >= 1');
|
$query->where($db->quoteName('a.published') . ' >= 1');
|
||||||
$query->order('a.system_name ASC');
|
$query->order('a.system_name ASC');
|
||||||
@ -165,17 +165,17 @@ class JFormFieldPowers extends JFormFieldList
|
|||||||
// if none was found, we add this to set an alternative to set custom
|
// if none was found, we add this to set an alternative to set custom
|
||||||
if (!$items)
|
if (!$items)
|
||||||
{
|
{
|
||||||
$options[] = JHtml::_('select.option', '', JText::_('PLG_CONTENTCOMPONENTBUILDERCOMPONENTHEADERSTABS_NONE_FOUND'));
|
$options[] = JHtml::_('select.option', '', JText::_('PLG_CONTENT_COMPONENTBUILDERCOMPONENTHEADERSTABS_NONE_FOUND'));
|
||||||
}
|
}
|
||||||
if ($items)
|
if ($items)
|
||||||
{
|
{
|
||||||
if ($this->multiple === false)
|
if ($this->multiple === false)
|
||||||
{
|
{
|
||||||
$options[] = JHtml::_('select.option', '', JText::_('PLG_CONTENTCOMPONENTBUILDERCOMPONENTHEADERSTABS_SELECT_AN_OPTION'));
|
$options[] = JHtml::_('select.option', '', JText::_('PLG_CONTENT_COMPONENTBUILDERCOMPONENTHEADERSTABS_SELECT_AN_OPTION'));
|
||||||
}
|
}
|
||||||
foreach($items as $item)
|
foreach($items as $item)
|
||||||
{
|
{
|
||||||
$options[] = JHtml::_('select.option', $item->id, $item->power_admin_component_system_name . ' [' . $item->type . ' ' . $item->name . '] (v' . $item->version . ')');
|
$options[] = JHtml::_('select.option', $item->guid, $item->power_admin_component_system_name . ' [' . $item->type . ' ' . $item->name . '] (v' . $item->version . ')');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return $options;
|
return $options;
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
<form>
|
<form>
|
||||||
<fields name="params">
|
<fields name="params">
|
||||||
<!-- default paths of custom_admin_view_headers fieldset points to the plugin -->
|
<!-- default paths of custom_admin_view_headers fieldset points to the plugin -->
|
||||||
<fieldset name="custom_admin_view_headers" label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CLASS_HEADERS"
|
<fieldset name="custom_admin_view_headers" label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CLASS_HEADERS"
|
||||||
addrulepath="/plugins/content/componentbuildercustomadminheaderstabs/rules"
|
addrulepath="/plugins/content/componentbuildercustomadminheaderstabs/rules"
|
||||||
addfieldpath="/plugins/content/componentbuildercustomadminheaderstabs/fields"
|
addfieldpath="/plugins/content/componentbuildercustomadminheaderstabs/fields"
|
||||||
>
|
>
|
||||||
@ -12,23 +12,23 @@
|
|||||||
<field
|
<field
|
||||||
type="radio"
|
type="radio"
|
||||||
name="add_custom_admin_view_model"
|
name="add_custom_admin_view_model"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_MODEL_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_MODEL_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_MODEL_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_MODEL_DESCRIPTION"
|
||||||
class="btn-group btn-group-yesno"
|
class="btn-group btn-group-yesno"
|
||||||
default="0"
|
default="0"
|
||||||
required="true">
|
required="true">
|
||||||
<!-- Option Set. -->
|
<!-- Option Set. -->
|
||||||
<option value="1">
|
<option value="1">
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES</option>
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES</option>
|
||||||
<option value="0">
|
<option value="0">
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO</option>
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO</option>
|
||||||
</field>
|
</field>
|
||||||
<!-- Custom_admin_view_model Field. Type: Editor. (joomla) -->
|
<!-- Custom_admin_view_model Field. Type: Editor. (joomla) -->
|
||||||
<field
|
<field
|
||||||
type="editor"
|
type="editor"
|
||||||
name="custom_admin_view_model"
|
name="custom_admin_view_model"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_MODEL_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_MODEL_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_MODEL_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_MODEL_DESCRIPTION"
|
||||||
width="100%"
|
width="100%"
|
||||||
height="100px"
|
height="100px"
|
||||||
cols="15"
|
cols="15"
|
||||||
@ -45,8 +45,8 @@
|
|||||||
<field
|
<field
|
||||||
type="powers"
|
type="powers"
|
||||||
name="power_custom_admin_view_model"
|
name="power_custom_admin_view_model"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_MODEL_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_MODEL_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_MODEL_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_MODEL_DESCRIPTION"
|
||||||
class="list_class span12"
|
class="list_class span12"
|
||||||
multiple="true"
|
multiple="true"
|
||||||
default="0"
|
default="0"
|
||||||
@ -58,23 +58,23 @@
|
|||||||
<field
|
<field
|
||||||
type="radio"
|
type="radio"
|
||||||
name="add_custom_admin_view_html"
|
name="add_custom_admin_view_html"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_HTML_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_HTML_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_HTML_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_HTML_DESCRIPTION"
|
||||||
class="btn-group btn-group-yesno"
|
class="btn-group btn-group-yesno"
|
||||||
default="0"
|
default="0"
|
||||||
required="true">
|
required="true">
|
||||||
<!-- Option Set. -->
|
<!-- Option Set. -->
|
||||||
<option value="1">
|
<option value="1">
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES</option>
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES</option>
|
||||||
<option value="0">
|
<option value="0">
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO</option>
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO</option>
|
||||||
</field>
|
</field>
|
||||||
<!-- Custom_admin_view_html Field. Type: Editor. (joomla) -->
|
<!-- Custom_admin_view_html Field. Type: Editor. (joomla) -->
|
||||||
<field
|
<field
|
||||||
type="editor"
|
type="editor"
|
||||||
name="custom_admin_view_html"
|
name="custom_admin_view_html"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_HTML_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_HTML_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_HTML_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_HTML_DESCRIPTION"
|
||||||
width="100%"
|
width="100%"
|
||||||
height="100px"
|
height="100px"
|
||||||
cols="15"
|
cols="15"
|
||||||
@ -91,8 +91,8 @@
|
|||||||
<field
|
<field
|
||||||
type="powers"
|
type="powers"
|
||||||
name="power_custom_admin_view_html"
|
name="power_custom_admin_view_html"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_HTML_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_HTML_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_HTML_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_HTML_DESCRIPTION"
|
||||||
class="list_class span12"
|
class="list_class span12"
|
||||||
multiple="true"
|
multiple="true"
|
||||||
default="0"
|
default="0"
|
||||||
@ -104,23 +104,23 @@
|
|||||||
<field
|
<field
|
||||||
type="radio"
|
type="radio"
|
||||||
name="add_custom_admin_view"
|
name="add_custom_admin_view"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_DESCRIPTION"
|
||||||
class="btn-group btn-group-yesno"
|
class="btn-group btn-group-yesno"
|
||||||
default="0"
|
default="0"
|
||||||
required="true">
|
required="true">
|
||||||
<!-- Option Set. -->
|
<!-- Option Set. -->
|
||||||
<option value="1">
|
<option value="1">
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES</option>
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES</option>
|
||||||
<option value="0">
|
<option value="0">
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO</option>
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO</option>
|
||||||
</field>
|
</field>
|
||||||
<!-- Custom_admin_view Field. Type: Editor. (joomla) -->
|
<!-- Custom_admin_view Field. Type: Editor. (joomla) -->
|
||||||
<field
|
<field
|
||||||
type="editor"
|
type="editor"
|
||||||
name="custom_admin_view"
|
name="custom_admin_view"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_DESCRIPTION"
|
||||||
width="100%"
|
width="100%"
|
||||||
height="100px"
|
height="100px"
|
||||||
cols="15"
|
cols="15"
|
||||||
@ -137,8 +137,8 @@
|
|||||||
<field
|
<field
|
||||||
type="powers"
|
type="powers"
|
||||||
name="power_custom_admin_view"
|
name="power_custom_admin_view"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_DESCRIPTION"
|
||||||
class="list_class span12"
|
class="list_class span12"
|
||||||
multiple="true"
|
multiple="true"
|
||||||
default="0"
|
default="0"
|
||||||
@ -150,23 +150,23 @@
|
|||||||
<field
|
<field
|
||||||
type="radio"
|
type="radio"
|
||||||
name="add_custom_admin_view_controller"
|
name="add_custom_admin_view_controller"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_CONTROLLER_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_CONTROLLER_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_CONTROLLER_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_CONTROLLER_DESCRIPTION"
|
||||||
class="btn-group btn-group-yesno"
|
class="btn-group btn-group-yesno"
|
||||||
default="0"
|
default="0"
|
||||||
required="true">
|
required="true">
|
||||||
<!-- Option Set. -->
|
<!-- Option Set. -->
|
||||||
<option value="1">
|
<option value="1">
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES</option>
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES</option>
|
||||||
<option value="0">
|
<option value="0">
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO</option>
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO</option>
|
||||||
</field>
|
</field>
|
||||||
<!-- Custom_admin_view_controller Field. Type: Editor. (joomla) -->
|
<!-- Custom_admin_view_controller Field. Type: Editor. (joomla) -->
|
||||||
<field
|
<field
|
||||||
type="editor"
|
type="editor"
|
||||||
name="custom_admin_view_controller"
|
name="custom_admin_view_controller"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_CONTROLLER_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_CONTROLLER_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_CONTROLLER_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_CONTROLLER_DESCRIPTION"
|
||||||
width="100%"
|
width="100%"
|
||||||
height="100px"
|
height="100px"
|
||||||
cols="15"
|
cols="15"
|
||||||
@ -183,8 +183,8 @@
|
|||||||
<field
|
<field
|
||||||
type="powers"
|
type="powers"
|
||||||
name="power_custom_admin_view_controller"
|
name="power_custom_admin_view_controller"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_CONTROLLER_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_CONTROLLER_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_CONTROLLER_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_CONTROLLER_DESCRIPTION"
|
||||||
class="list_class span12"
|
class="list_class span12"
|
||||||
multiple="true"
|
multiple="true"
|
||||||
default="0"
|
default="0"
|
||||||
@ -196,23 +196,23 @@
|
|||||||
<field
|
<field
|
||||||
type="radio"
|
type="radio"
|
||||||
name="add_custom_admin_views_model"
|
name="add_custom_admin_views_model"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_MODEL_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_MODEL_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_MODEL_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_MODEL_DESCRIPTION"
|
||||||
class="btn-group btn-group-yesno"
|
class="btn-group btn-group-yesno"
|
||||||
default="0"
|
default="0"
|
||||||
required="true">
|
required="true">
|
||||||
<!-- Option Set. -->
|
<!-- Option Set. -->
|
||||||
<option value="1">
|
<option value="1">
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES</option>
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES</option>
|
||||||
<option value="0">
|
<option value="0">
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO</option>
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO</option>
|
||||||
</field>
|
</field>
|
||||||
<!-- Custom_admin_views_model Field. Type: Editor. (joomla) -->
|
<!-- Custom_admin_views_model Field. Type: Editor. (joomla) -->
|
||||||
<field
|
<field
|
||||||
type="editor"
|
type="editor"
|
||||||
name="custom_admin_views_model"
|
name="custom_admin_views_model"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_MODEL_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_MODEL_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_MODEL_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_MODEL_DESCRIPTION"
|
||||||
width="100%"
|
width="100%"
|
||||||
height="100px"
|
height="100px"
|
||||||
cols="15"
|
cols="15"
|
||||||
@ -229,8 +229,8 @@
|
|||||||
<field
|
<field
|
||||||
type="powers"
|
type="powers"
|
||||||
name="power_custom_admin_views_model"
|
name="power_custom_admin_views_model"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_MODEL_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_MODEL_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_MODEL_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_MODEL_DESCRIPTION"
|
||||||
class="list_class span12"
|
class="list_class span12"
|
||||||
multiple="true"
|
multiple="true"
|
||||||
default="0"
|
default="0"
|
||||||
@ -242,23 +242,23 @@
|
|||||||
<field
|
<field
|
||||||
type="radio"
|
type="radio"
|
||||||
name="add_custom_admin_views_html"
|
name="add_custom_admin_views_html"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_HTML_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_HTML_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_HTML_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_HTML_DESCRIPTION"
|
||||||
class="btn-group btn-group-yesno"
|
class="btn-group btn-group-yesno"
|
||||||
default="0"
|
default="0"
|
||||||
required="true">
|
required="true">
|
||||||
<!-- Option Set. -->
|
<!-- Option Set. -->
|
||||||
<option value="1">
|
<option value="1">
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES</option>
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES</option>
|
||||||
<option value="0">
|
<option value="0">
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO</option>
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO</option>
|
||||||
</field>
|
</field>
|
||||||
<!-- Custom_admin_views_html Field. Type: Editor. (joomla) -->
|
<!-- Custom_admin_views_html Field. Type: Editor. (joomla) -->
|
||||||
<field
|
<field
|
||||||
type="editor"
|
type="editor"
|
||||||
name="custom_admin_views_html"
|
name="custom_admin_views_html"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_HTML_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_HTML_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_HTML_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_HTML_DESCRIPTION"
|
||||||
width="100%"
|
width="100%"
|
||||||
height="100px"
|
height="100px"
|
||||||
cols="15"
|
cols="15"
|
||||||
@ -275,8 +275,8 @@
|
|||||||
<field
|
<field
|
||||||
type="powers"
|
type="powers"
|
||||||
name="power_custom_admin_views_html"
|
name="power_custom_admin_views_html"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_HTML_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_HTML_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_HTML_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_HTML_DESCRIPTION"
|
||||||
class="list_class span12"
|
class="list_class span12"
|
||||||
multiple="true"
|
multiple="true"
|
||||||
default="0"
|
default="0"
|
||||||
@ -288,23 +288,23 @@
|
|||||||
<field
|
<field
|
||||||
type="radio"
|
type="radio"
|
||||||
name="add_custom_admin_views"
|
name="add_custom_admin_views"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_DESCRIPTION"
|
||||||
class="btn-group btn-group-yesno"
|
class="btn-group btn-group-yesno"
|
||||||
default="0"
|
default="0"
|
||||||
required="true">
|
required="true">
|
||||||
<!-- Option Set. -->
|
<!-- Option Set. -->
|
||||||
<option value="1">
|
<option value="1">
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES</option>
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES</option>
|
||||||
<option value="0">
|
<option value="0">
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO</option>
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO</option>
|
||||||
</field>
|
</field>
|
||||||
<!-- Custom_admin_views Field. Type: Editor. (joomla) -->
|
<!-- Custom_admin_views Field. Type: Editor. (joomla) -->
|
||||||
<field
|
<field
|
||||||
type="editor"
|
type="editor"
|
||||||
name="custom_admin_views"
|
name="custom_admin_views"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_DESCRIPTION"
|
||||||
width="100%"
|
width="100%"
|
||||||
height="100px"
|
height="100px"
|
||||||
cols="15"
|
cols="15"
|
||||||
@ -321,8 +321,8 @@
|
|||||||
<field
|
<field
|
||||||
type="powers"
|
type="powers"
|
||||||
name="power_custom_admin_views"
|
name="power_custom_admin_views"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_DESCRIPTION"
|
||||||
class="list_class span12"
|
class="list_class span12"
|
||||||
multiple="true"
|
multiple="true"
|
||||||
default="0"
|
default="0"
|
||||||
@ -334,23 +334,23 @@
|
|||||||
<field
|
<field
|
||||||
type="radio"
|
type="radio"
|
||||||
name="add_custom_admin_views_controller"
|
name="add_custom_admin_views_controller"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_CONTROLLER_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_CONTROLLER_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_CONTROLLER_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_CONTROLLER_DESCRIPTION"
|
||||||
class="btn-group btn-group-yesno"
|
class="btn-group btn-group-yesno"
|
||||||
default="0"
|
default="0"
|
||||||
required="true">
|
required="true">
|
||||||
<!-- Option Set. -->
|
<!-- Option Set. -->
|
||||||
<option value="1">
|
<option value="1">
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES</option>
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES</option>
|
||||||
<option value="0">
|
<option value="0">
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO</option>
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO</option>
|
||||||
</field>
|
</field>
|
||||||
<!-- Custom_admin_views_controller Field. Type: Editor. (joomla) -->
|
<!-- Custom_admin_views_controller Field. Type: Editor. (joomla) -->
|
||||||
<field
|
<field
|
||||||
type="editor"
|
type="editor"
|
||||||
name="custom_admin_views_controller"
|
name="custom_admin_views_controller"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_CONTROLLER_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_CONTROLLER_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_CONTROLLER_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_CONTROLLER_DESCRIPTION"
|
||||||
width="100%"
|
width="100%"
|
||||||
height="100px"
|
height="100px"
|
||||||
cols="15"
|
cols="15"
|
||||||
@ -367,8 +367,8 @@
|
|||||||
<field
|
<field
|
||||||
type="powers"
|
type="powers"
|
||||||
name="power_custom_admin_views_controller"
|
name="power_custom_admin_views_controller"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_CONTROLLER_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_CONTROLLER_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_CONTROLLER_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_CONTROLLER_DESCRIPTION"
|
||||||
class="list_class span12"
|
class="list_class span12"
|
||||||
multiple="true"
|
multiple="true"
|
||||||
default="0"
|
default="0"
|
||||||
@ -380,22 +380,22 @@
|
|||||||
<field
|
<field
|
||||||
type="radio"
|
type="radio"
|
||||||
name="add_ajax_model"
|
name="add_ajax_model"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_AJAX_MODEL_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_AJAX_MODEL_LABEL"
|
||||||
class="btn-group btn-group-yesno"
|
class="btn-group btn-group-yesno"
|
||||||
default="0"
|
default="0"
|
||||||
required="true">
|
required="true">
|
||||||
<!-- Option Set. -->
|
<!-- Option Set. -->
|
||||||
<option value="1">
|
<option value="1">
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES</option>
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES</option>
|
||||||
<option value="0">
|
<option value="0">
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO</option>
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO</option>
|
||||||
</field>
|
</field>
|
||||||
<!-- Ajax_model Field. Type: Editor. (joomla) -->
|
<!-- Ajax_model Field. Type: Editor. (joomla) -->
|
||||||
<field
|
<field
|
||||||
type="editor"
|
type="editor"
|
||||||
name="ajax_model"
|
name="ajax_model"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_AJAX_MODEL_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_AJAX_MODEL_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_AJAX_MODEL_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_AJAX_MODEL_DESCRIPTION"
|
||||||
width="100%"
|
width="100%"
|
||||||
height="100px"
|
height="100px"
|
||||||
cols="15"
|
cols="15"
|
||||||
@ -412,8 +412,8 @@
|
|||||||
<field
|
<field
|
||||||
type="powers"
|
type="powers"
|
||||||
name="power_ajax_model"
|
name="power_ajax_model"
|
||||||
label="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_AJAX_MODEL_LABEL"
|
label="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_AJAX_MODEL_LABEL"
|
||||||
description="PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_AJAX_MODEL_DESCRIPTION"
|
description="PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_AJAX_MODEL_DESCRIPTION"
|
||||||
class="list_class span12"
|
class="list_class span12"
|
||||||
multiple="true"
|
multiple="true"
|
||||||
default="0"
|
default="0"
|
||||||
|
@ -1,93 +1,93 @@
|
|||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS="Content - Componentbuilder Custom Admin Headers Tabs"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS="Content - Componentbuilder Custom Admin Headers Tabs"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_DESCRIPTION="This plugin is used to set custom admin class custom headers."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_DESCRIPTION="This plugin is used to set custom admin class custom headers."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_XML_DESCRIPTION="<h1>Content - Componentbuilder Custom Admin Headers Tabs (v.1.0.4)</h1> <div style='clear: both;'></div><p>This plugin is used to set custom admin class custom headers.</p><p>Created by <a href='https://dev.vdm.io' target='_blank'>Llewellyn van der Merwe</a><br /><small>Development started 8th December, 2020</small></p>"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_XML_DESCRIPTION="<h1>Content - Componentbuilder Custom Admin Headers Tabs (v.1.0.4)</h1> <div style='clear: both;'></div><p>This plugin is used to set custom admin class custom headers.</p><p>Created by <a href='https://dev.vdm.io' target='_blank'>Llewellyn van der Merwe</a><br /><small>Development started 8th December, 2020</small></p>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CLASS_HEADERS="Class Headers"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CLASS_HEADERS="Class Headers"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_MODEL_LABEL="Target Custom Admin View<br />Model Header"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_MODEL_LABEL="Target Custom Admin View<br />Model Header"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_MODEL_DESCRIPTION="Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_MODEL_DESCRIPTION="Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES="Yes"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES="Yes"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO="No"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO="No"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_MODEL_LABEL="Class Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_MODEL_LABEL="Class Header<br />
|
||||||
<small>(custom.admin.view.model)</small><br />
|
<small>(custom.admin.view.model)</small><br />
|
||||||
<b>getItem</b>"
|
<b>getItem</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_MODEL_DESCRIPTION="The class header for custom admin view model. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_MODEL_DESCRIPTION="The class header for custom admin view model. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_MODEL_LABEL="Power Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_MODEL_LABEL="Power Header<br />
|
||||||
<small>(custom.admin.view.model)</small><br />
|
<small>(custom.admin.view.model)</small><br />
|
||||||
<b>getItem</b>"
|
<b>getItem</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_MODEL_DESCRIPTION="The power header for custom admin view model. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_MODEL_DESCRIPTION="The power header for custom admin view model. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_HTML_LABEL="Target Custom Admin View<br />Class Header"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_HTML_LABEL="Target Custom Admin View<br />Class Header"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_HTML_DESCRIPTION="Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_HTML_DESCRIPTION="Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_HTML_LABEL="Class Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_HTML_LABEL="Class Header<br />
|
||||||
<small>(custom.admin.view.html)</small><br />
|
<small>(custom.admin.view.html)</small><br />
|
||||||
<b>getItem</b>"
|
<b>getItem</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_HTML_DESCRIPTION="The class header for custom admin view. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_HTML_DESCRIPTION="The class header for custom admin view. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_HTML_LABEL="Power Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_HTML_LABEL="Power Header<br />
|
||||||
<small>(custom.admin.view.html)</small><br />
|
<small>(custom.admin.view.html)</small><br />
|
||||||
<b>getItem</b>"
|
<b>getItem</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_HTML_DESCRIPTION="The power header for custom admin view. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_HTML_DESCRIPTION="The power header for custom admin view. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_LABEL="Target Custom Admin View<br />Default Template Header"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_LABEL="Target Custom Admin View<br />Default Template Header"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_DESCRIPTION="Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_DESCRIPTION="Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_LABEL="Default Template Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_LABEL="Default Template Header<br />
|
||||||
<small>(custom.admin.view)</small><br />
|
<small>(custom.admin.view)</small><br />
|
||||||
<b>getItem</b>"
|
<b>getItem</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_DESCRIPTION="The default template header for custom admin view. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_DESCRIPTION="The default template header for custom admin view. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_LABEL="Power Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_LABEL="Power Header<br />
|
||||||
<small>(custom.admin.view)</small><br />
|
<small>(custom.admin.view)</small><br />
|
||||||
<b>getItem</b>"
|
<b>getItem</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_DESCRIPTION="The power header for custom admin view. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_DESCRIPTION="The power header for custom admin view. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_CONTROLLER_LABEL="Target Custom Admin View<br />Controller Header"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_CONTROLLER_LABEL="Target Custom Admin View<br />Controller Header"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_CONTROLLER_DESCRIPTION="Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_CONTROLLER_DESCRIPTION="Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_CONTROLLER_LABEL="Class Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_CONTROLLER_LABEL="Class Header<br />
|
||||||
<small>(custom.admin.view.controller)</small><br />
|
<small>(custom.admin.view.controller)</small><br />
|
||||||
<b>getItem</b>"
|
<b>getItem</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_CONTROLLER_DESCRIPTION="The class header for custom admin view controller. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_CONTROLLER_DESCRIPTION="The class header for custom admin view controller. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_CONTROLLER_LABEL="Power Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_CONTROLLER_LABEL="Power Header<br />
|
||||||
<small>(custom.admin.view.controller)</small><br />
|
<small>(custom.admin.view.controller)</small><br />
|
||||||
<b>getItem</b>"
|
<b>getItem</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_CONTROLLER_DESCRIPTION="The power header for custom admin view controller. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_CONTROLLER_DESCRIPTION="The power header for custom admin view controller. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_MODEL_LABEL="Target Custom Admin Views<br />Model Header"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_MODEL_LABEL="Target Custom Admin Views<br />Model Header"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_MODEL_DESCRIPTION="Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_MODEL_DESCRIPTION="Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_MODEL_LABEL="Class Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_MODEL_LABEL="Class Header<br />
|
||||||
<small>(custom.admin.views.model)</small><br />
|
<small>(custom.admin.views.model)</small><br />
|
||||||
<b>getListQuery</b>"
|
<b>getListQuery</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_MODEL_DESCRIPTION="The class header for custom admin views model. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_MODEL_DESCRIPTION="The class header for custom admin views model. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_MODEL_LABEL="Power Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_MODEL_LABEL="Power Header<br />
|
||||||
<small>(custom.admin.views.model)</small><br />
|
<small>(custom.admin.views.model)</small><br />
|
||||||
<b>getListQuery</b>"
|
<b>getListQuery</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_MODEL_DESCRIPTION="The power header for custom admin views model. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_MODEL_DESCRIPTION="The power header for custom admin views model. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_HTML_LABEL="Target Custom Admin Views<br />Class Header"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_HTML_LABEL="Target Custom Admin Views<br />Class Header"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_HTML_DESCRIPTION="Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_HTML_DESCRIPTION="Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_HTML_LABEL="Class Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_HTML_LABEL="Class Header<br />
|
||||||
<small>(custom.admin.views.html)</small><br />
|
<small>(custom.admin.views.html)</small><br />
|
||||||
<b>getListQuery</b>"
|
<b>getListQuery</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_HTML_DESCRIPTION="The class header for custom admin views. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_HTML_DESCRIPTION="The class header for custom admin views. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_HTML_LABEL="Power Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_HTML_LABEL="Power Header<br />
|
||||||
<small>(custom.admin.views.html)</small><br />
|
<small>(custom.admin.views.html)</small><br />
|
||||||
<b>getListQuery</b>"
|
<b>getListQuery</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_HTML_DESCRIPTION="The power header for custom admin views. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_HTML_DESCRIPTION="The power header for custom admin views. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_LABEL="Target Custom Admin Views<br />Default Template Header"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_LABEL="Target Custom Admin Views<br />Default Template Header"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_DESCRIPTION="Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_DESCRIPTION="Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_LABEL="Default Template Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_LABEL="Default Template Header<br />
|
||||||
<small>(custom.admin.views)</small><br />
|
<small>(custom.admin.views)</small><br />
|
||||||
<b>getListQuery</b>"
|
<b>getListQuery</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_DESCRIPTION="The default template header for custom admin views. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_DESCRIPTION="The default template header for custom admin views. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_LABEL="Power Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_LABEL="Power Header<br />
|
||||||
<small>(custom.admin.views)</small><br />
|
<small>(custom.admin.views)</small><br />
|
||||||
<b>getListQuery</b>"
|
<b>getListQuery</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_DESCRIPTION="The power header for custom admin views. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_DESCRIPTION="The power header for custom admin views. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_CONTROLLER_LABEL="Target Custom Admin Views<br />Controller Header"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_CONTROLLER_LABEL="Target Custom Admin Views<br />Controller Header"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_CONTROLLER_DESCRIPTION="Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_CONTROLLER_DESCRIPTION="Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_CONTROLLER_LABEL="Class Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_CONTROLLER_LABEL="Class Header<br />
|
||||||
<small>(custom.admin.views.controller)</small><br />
|
<small>(custom.admin.views.controller)</small><br />
|
||||||
<b>getListQuery</b>"
|
<b>getListQuery</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_CONTROLLER_DESCRIPTION="The class header for custom admin views controller. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_CONTROLLER_DESCRIPTION="The class header for custom admin views controller. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_CONTROLLER_LABEL="Power Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_CONTROLLER_LABEL="Power Header<br />
|
||||||
<small>(custom.admin.views.controller)</small><br />
|
<small>(custom.admin.views.controller)</small><br />
|
||||||
<b>getListQuery</b>"
|
<b>getListQuery</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_CONTROLLER_DESCRIPTION="The power header for custom admin views controller. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_CONTROLLER_DESCRIPTION="The power header for custom admin views controller. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_AJAX_MODEL_LABEL="Target Ajax Model<br />Class Header"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_AJAX_MODEL_LABEL="Target Ajax Model<br />Class Header"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_AJAX_MODEL_LABEL="Class Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_AJAX_MODEL_LABEL="Class Header<br />
|
||||||
<small>(ajax.model)</small>"
|
<small>(ajax.model)</small>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_AJAX_MODEL_DESCRIPTION="The class header for Ajax model."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_AJAX_MODEL_DESCRIPTION="The class header for Ajax model."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_AJAX_MODEL_LABEL="Power Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_AJAX_MODEL_LABEL="Power Header<br />
|
||||||
<small>(ajax.model)</small>"
|
<small>(ajax.model)</small>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_AJAX_MODEL_DESCRIPTION="The power header for Ajax model."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_AJAX_MODEL_DESCRIPTION="The power header for Ajax model."
|
@ -1,93 +1,93 @@
|
|||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS="Content - Componentbuilder Custom Admin Headers Tabs"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS="Content - Componentbuilder Custom Admin Headers Tabs"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_DESCRIPTION="This plugin is used to set custom admin class custom headers."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_DESCRIPTION="This plugin is used to set custom admin class custom headers."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_XML_DESCRIPTION="<h1>Content - Componentbuilder Custom Admin Headers Tabs (v.1.0.4)</h1> <div style='clear: both;'></div><p>This plugin is used to set custom admin class custom headers.</p><p>Created by <a href='https://dev.vdm.io' target='_blank'>Llewellyn van der Merwe</a><br /><small>Development started 8th December, 2020</small></p>"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_XML_DESCRIPTION="<h1>Content - Componentbuilder Custom Admin Headers Tabs (v.1.0.4)</h1> <div style='clear: both;'></div><p>This plugin is used to set custom admin class custom headers.</p><p>Created by <a href='https://dev.vdm.io' target='_blank'>Llewellyn van der Merwe</a><br /><small>Development started 8th December, 2020</small></p>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CLASS_HEADERS="Class Headers"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CLASS_HEADERS="Class Headers"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_MODEL_LABEL="Target Custom Admin View<br />Model Header"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_MODEL_LABEL="Target Custom Admin View<br />Model Header"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_MODEL_DESCRIPTION="Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_MODEL_DESCRIPTION="Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES="Yes"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_YES="Yes"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO="No"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_NO="No"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_MODEL_LABEL="Class Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_MODEL_LABEL="Class Header<br />
|
||||||
<small>(custom.admin.view.model)</small><br />
|
<small>(custom.admin.view.model)</small><br />
|
||||||
<b>getItem</b>"
|
<b>getItem</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_MODEL_DESCRIPTION="The class header for custom admin view model. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_MODEL_DESCRIPTION="The class header for custom admin view model. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_MODEL_LABEL="Power Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_MODEL_LABEL="Power Header<br />
|
||||||
<small>(custom.admin.view.model)</small><br />
|
<small>(custom.admin.view.model)</small><br />
|
||||||
<b>getItem</b>"
|
<b>getItem</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_MODEL_DESCRIPTION="The power header for custom admin view model. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_MODEL_DESCRIPTION="The power header for custom admin view model. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_HTML_LABEL="Target Custom Admin View<br />Class Header"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_HTML_LABEL="Target Custom Admin View<br />Class Header"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_HTML_DESCRIPTION="Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_HTML_DESCRIPTION="Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_HTML_LABEL="Class Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_HTML_LABEL="Class Header<br />
|
||||||
<small>(custom.admin.view.html)</small><br />
|
<small>(custom.admin.view.html)</small><br />
|
||||||
<b>getItem</b>"
|
<b>getItem</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_HTML_DESCRIPTION="The class header for custom admin view. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_HTML_DESCRIPTION="The class header for custom admin view. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_HTML_LABEL="Power Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_HTML_LABEL="Power Header<br />
|
||||||
<small>(custom.admin.view.html)</small><br />
|
<small>(custom.admin.view.html)</small><br />
|
||||||
<b>getItem</b>"
|
<b>getItem</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_HTML_DESCRIPTION="The power header for custom admin view. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_HTML_DESCRIPTION="The power header for custom admin view. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_LABEL="Target Custom Admin View<br />Default Template Header"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_LABEL="Target Custom Admin View<br />Default Template Header"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_DESCRIPTION="Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_DESCRIPTION="Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_LABEL="Default Template Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_LABEL="Default Template Header<br />
|
||||||
<small>(custom.admin.view)</small><br />
|
<small>(custom.admin.view)</small><br />
|
||||||
<b>getItem</b>"
|
<b>getItem</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_DESCRIPTION="The default template header for custom admin view. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_DESCRIPTION="The default template header for custom admin view. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_LABEL="Power Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_LABEL="Power Header<br />
|
||||||
<small>(custom.admin.view)</small><br />
|
<small>(custom.admin.view)</small><br />
|
||||||
<b>getItem</b>"
|
<b>getItem</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_DESCRIPTION="The power header for custom admin view. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_DESCRIPTION="The power header for custom admin view. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_CONTROLLER_LABEL="Target Custom Admin View<br />Controller Header"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_CONTROLLER_LABEL="Target Custom Admin View<br />Controller Header"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_CONTROLLER_DESCRIPTION="Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEW_CONTROLLER_DESCRIPTION="Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_CONTROLLER_LABEL="Class Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_CONTROLLER_LABEL="Class Header<br />
|
||||||
<small>(custom.admin.view.controller)</small><br />
|
<small>(custom.admin.view.controller)</small><br />
|
||||||
<b>getItem</b>"
|
<b>getItem</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_CONTROLLER_DESCRIPTION="The class header for custom admin view controller. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEW_CONTROLLER_DESCRIPTION="The class header for custom admin view controller. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_CONTROLLER_LABEL="Power Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_CONTROLLER_LABEL="Power Header<br />
|
||||||
<small>(custom.admin.view.controller)</small><br />
|
<small>(custom.admin.view.controller)</small><br />
|
||||||
<b>getItem</b>"
|
<b>getItem</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_CONTROLLER_DESCRIPTION="The power header for custom admin view controller. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEW_CONTROLLER_DESCRIPTION="The power header for custom admin view controller. Only use this option if you have a <b>getItem</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_MODEL_LABEL="Target Custom Admin Views<br />Model Header"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_MODEL_LABEL="Target Custom Admin Views<br />Model Header"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_MODEL_DESCRIPTION="Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_MODEL_DESCRIPTION="Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_MODEL_LABEL="Class Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_MODEL_LABEL="Class Header<br />
|
||||||
<small>(custom.admin.views.model)</small><br />
|
<small>(custom.admin.views.model)</small><br />
|
||||||
<b>getListQuery</b>"
|
<b>getListQuery</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_MODEL_DESCRIPTION="The class header for custom admin views model. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_MODEL_DESCRIPTION="The class header for custom admin views model. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_MODEL_LABEL="Power Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_MODEL_LABEL="Power Header<br />
|
||||||
<small>(custom.admin.views.model)</small><br />
|
<small>(custom.admin.views.model)</small><br />
|
||||||
<b>getListQuery</b>"
|
<b>getListQuery</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_MODEL_DESCRIPTION="The power header for custom admin views model. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_MODEL_DESCRIPTION="The power header for custom admin views model. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_HTML_LABEL="Target Custom Admin Views<br />Class Header"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_HTML_LABEL="Target Custom Admin Views<br />Class Header"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_HTML_DESCRIPTION="Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_HTML_DESCRIPTION="Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_HTML_LABEL="Class Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_HTML_LABEL="Class Header<br />
|
||||||
<small>(custom.admin.views.html)</small><br />
|
<small>(custom.admin.views.html)</small><br />
|
||||||
<b>getListQuery</b>"
|
<b>getListQuery</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_HTML_DESCRIPTION="The class header for custom admin views. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_HTML_DESCRIPTION="The class header for custom admin views. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_HTML_LABEL="Power Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_HTML_LABEL="Power Header<br />
|
||||||
<small>(custom.admin.views.html)</small><br />
|
<small>(custom.admin.views.html)</small><br />
|
||||||
<b>getListQuery</b>"
|
<b>getListQuery</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_HTML_DESCRIPTION="The power header for custom admin views. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_HTML_DESCRIPTION="The power header for custom admin views. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_LABEL="Target Custom Admin Views<br />Default Template Header"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_LABEL="Target Custom Admin Views<br />Default Template Header"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_DESCRIPTION="Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_DESCRIPTION="Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_LABEL="Default Template Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_LABEL="Default Template Header<br />
|
||||||
<small>(custom.admin.views)</small><br />
|
<small>(custom.admin.views)</small><br />
|
||||||
<b>getListQuery</b>"
|
<b>getListQuery</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_DESCRIPTION="The default template header for custom admin views. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_DESCRIPTION="The default template header for custom admin views. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_LABEL="Power Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_LABEL="Power Header<br />
|
||||||
<small>(custom.admin.views)</small><br />
|
<small>(custom.admin.views)</small><br />
|
||||||
<b>getListQuery</b>"
|
<b>getListQuery</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_DESCRIPTION="The power header for custom admin views. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_DESCRIPTION="The power header for custom admin views. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_CONTROLLER_LABEL="Target Custom Admin Views<br />Controller Header"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_CONTROLLER_LABEL="Target Custom Admin Views<br />Controller Header"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_CONTROLLER_DESCRIPTION="Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_CUSTOM_ADMIN_VIEWS_CONTROLLER_DESCRIPTION="Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_CONTROLLER_LABEL="Class Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_CONTROLLER_LABEL="Class Header<br />
|
||||||
<small>(custom.admin.views.controller)</small><br />
|
<small>(custom.admin.views.controller)</small><br />
|
||||||
<b>getListQuery</b>"
|
<b>getListQuery</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_CONTROLLER_DESCRIPTION="The class header for custom admin views controller. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_CUSTOM_ADMIN_VIEWS_CONTROLLER_DESCRIPTION="The class header for custom admin views controller. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_CONTROLLER_LABEL="Power Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_CONTROLLER_LABEL="Power Header<br />
|
||||||
<small>(custom.admin.views.controller)</small><br />
|
<small>(custom.admin.views.controller)</small><br />
|
||||||
<b>getListQuery</b>"
|
<b>getListQuery</b>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_CONTROLLER_DESCRIPTION="The power header for custom admin views controller. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_CUSTOM_ADMIN_VIEWS_CONTROLLER_DESCRIPTION="The power header for custom admin views controller. Only use this option if you have a <b>getListQuery</b> as your <b>Main Get</b>, and have custom code in the <b>PHP (controller methods)</b> under the Custom Buttons tab."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_AJAX_MODEL_LABEL="Target Ajax Model<br />Class Header"
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_ADD_AJAX_MODEL_LABEL="Target Ajax Model<br />Class Header"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_AJAX_MODEL_LABEL="Class Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_AJAX_MODEL_LABEL="Class Header<br />
|
||||||
<small>(ajax.model)</small>"
|
<small>(ajax.model)</small>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_AJAX_MODEL_DESCRIPTION="The class header for Ajax model."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_AJAX_MODEL_DESCRIPTION="The class header for Ajax model."
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_AJAX_MODEL_LABEL="Power Header<br />
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_AJAX_MODEL_LABEL="Power Header<br />
|
||||||
<small>(ajax.model)</small>"
|
<small>(ajax.model)</small>"
|
||||||
PLG_CONTENTCOMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_AJAX_MODEL_DESCRIPTION="The power header for Ajax model."
|
PLG_CONTENT_COMPONENTBUILDERCUSTOMADMINHEADERSTABS_POWER_AJAX_MODEL_DESCRIPTION="The power header for Ajax model."
|
Loading…
Reference in New Issue
Block a user