forked from joomla/Component-Builder
Renamed the uikit lib folders. Resolved the gh-188 by updateing the note. Resolved gh-92 by implementation of the library manager in the compiler.
This commit is contained in:
parent
b60d208d9e
commit
f900f65baa
@ -111,12 +111,12 @@ Component Builder is mapped as a component in itself on my local development env
|
|||||||
+ *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io)
|
+ *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io)
|
||||||
+ *Name*: [Component Builder](http://vdm.bz/component-builder)
|
+ *Name*: [Component Builder](http://vdm.bz/component-builder)
|
||||||
+ *First Build*: 30th April, 2015
|
+ *First Build*: 30th April, 2015
|
||||||
+ *Last Build*: 3rd December, 2017
|
+ *Last Build*: 10th December, 2017
|
||||||
+ *Version*: 2.6.6
|
+ *Version*: 2.6.6
|
||||||
+ *Copyright*: Copyright (C) 2015. All Rights Reserved
|
+ *Copyright*: Copyright (C) 2015. All Rights Reserved
|
||||||
+ *License*: GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
+ *License*: GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
||||||
+ *Line count*: **179770**
|
+ *Line count*: **177932**
|
||||||
+ *File count*: **1141**
|
+ *File count*: **1142**
|
||||||
+ *Folder count*: **184**
|
+ *Folder count*: **184**
|
||||||
|
|
||||||
> This **component** was build with a Joomla [Automated Component Builder](http://vdm.bz/component-builder).
|
> This **component** was build with a Joomla [Automated Component Builder](http://vdm.bz/component-builder).
|
||||||
|
@ -111,12 +111,12 @@ Component Builder is mapped as a component in itself on my local development env
|
|||||||
+ *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io)
|
+ *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io)
|
||||||
+ *Name*: [Component Builder](http://vdm.bz/component-builder)
|
+ *Name*: [Component Builder](http://vdm.bz/component-builder)
|
||||||
+ *First Build*: 30th April, 2015
|
+ *First Build*: 30th April, 2015
|
||||||
+ *Last Build*: 3rd December, 2017
|
+ *Last Build*: 10th December, 2017
|
||||||
+ *Version*: 2.6.6
|
+ *Version*: 2.6.6
|
||||||
+ *Copyright*: Copyright (C) 2015. All Rights Reserved
|
+ *Copyright*: Copyright (C) 2015. All Rights Reserved
|
||||||
+ *License*: GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
+ *License*: GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
||||||
+ *Line count*: **179770**
|
+ *Line count*: **177932**
|
||||||
+ *File count*: **1141**
|
+ *File count*: **1142**
|
||||||
+ *Folder count*: **184**
|
+ *Folder count*: **184**
|
||||||
|
|
||||||
> This **component** was build with a Joomla [Automated Component Builder](http://vdm.bz/component-builder).
|
> This **component** was build with a Joomla [Automated Component Builder](http://vdm.bz/component-builder).
|
||||||
|
@ -650,6 +650,31 @@ abstract class ###Component###Helper
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if we are connected
|
||||||
|
* Thanks https://stackoverflow.com/a/4860432/1429677
|
||||||
|
*
|
||||||
|
* @returns bool true on success
|
||||||
|
**/
|
||||||
|
public static function isConnected()
|
||||||
|
{
|
||||||
|
// If example.com is down, then probably the whole internet is down, since IANA maintains the domain. Right?
|
||||||
|
$connected = @fsockopen("www.example.com", 80);
|
||||||
|
// website, port (try 80 or 443)
|
||||||
|
if ($connected)
|
||||||
|
{
|
||||||
|
//action when connected
|
||||||
|
$is_conn = true;
|
||||||
|
fclose($connected);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//action in connection failure
|
||||||
|
$is_conn = false;
|
||||||
|
}
|
||||||
|
return $is_conn;
|
||||||
|
}
|
||||||
|
|
||||||
public static function mergeArrays($arrays)
|
public static function mergeArrays($arrays)
|
||||||
{
|
{
|
||||||
if(self::checkArray($arrays))
|
if(self::checkArray($arrays))
|
||||||
|
@ -645,6 +645,31 @@ abstract class ###Component###Helper
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if we are connected
|
||||||
|
* Thanks https://stackoverflow.com/a/4860432/1429677
|
||||||
|
*
|
||||||
|
* @returns bool true on success
|
||||||
|
**/
|
||||||
|
public static function isConnected()
|
||||||
|
{
|
||||||
|
// If example.com is down, then probably the whole internet is down, since IANA maintains the domain. Right?
|
||||||
|
$connected = @fsockopen("www.example.com", 80);
|
||||||
|
// website, port (try 80 or 443)
|
||||||
|
if ($connected)
|
||||||
|
{
|
||||||
|
//action when connected
|
||||||
|
$is_conn = true;
|
||||||
|
fclose($connected);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//action in connection failure
|
||||||
|
$is_conn = false;
|
||||||
|
}
|
||||||
|
return $is_conn;
|
||||||
|
}
|
||||||
|
|
||||||
public static function mergeArrays($arrays)
|
public static function mergeArrays($arrays)
|
||||||
{
|
{
|
||||||
if(self::checkArray($arrays))
|
if(self::checkArray($arrays))
|
||||||
|
@ -54,7 +54,7 @@ class ###Component###View###SView### extends JViewLegacy
|
|||||||
* Prepares the document
|
* Prepares the document
|
||||||
*/
|
*/
|
||||||
protected function setDocument()
|
protected function setDocument()
|
||||||
{###CUSTOM_ADMIN_DOCUMENT_METADATA### ###CUSTOM_ADMIN_UIKIT_LOADER### ###CUSTOM_ADMIN_GOOGLECHART_LOADER### ###CUSTOM_ADMIN_FOOTABLE_LOADER### ###CUSTOM_ADMIN_DOCUMENT_CUSTOM_PHP###
|
{###CUSTOM_ADMIN_LIBRARIES_LOADER### ###CUSTOM_ADMIN_DOCUMENT_METADATA### ###CUSTOM_ADMIN_UIKIT_LOADER### ###CUSTOM_ADMIN_GOOGLECHART_LOADER### ###CUSTOM_ADMIN_FOOTABLE_LOADER### ###CUSTOM_ADMIN_DOCUMENT_CUSTOM_PHP###
|
||||||
// add the document default css file
|
// add the document default css file
|
||||||
$this->document->addStyleSheet(JURI::root(true) .'/administrator/components/com_###component###/assets/css/###sview###.css');###CUSTOM_ADMIN_DOCUMENT_CUSTOM_CSS### ###CUSTOM_ADMIN_DOCUMENT_CUSTOM_JS###
|
$this->document->addStyleSheet(JURI::root(true) .'/administrator/components/com_###component###/assets/css/###sview###.css');###CUSTOM_ADMIN_DOCUMENT_CUSTOM_CSS### ###CUSTOM_ADMIN_DOCUMENT_CUSTOM_JS###
|
||||||
}
|
}
|
||||||
|
@ -117,11 +117,14 @@ class ###Component###View###View### extends JViewLegacy
|
|||||||
protected function setDocument()
|
protected function setDocument()
|
||||||
{
|
{
|
||||||
$isNew = ($this->item->id < 1);
|
$isNew = ($this->item->id < 1);
|
||||||
$document = JFactory::getDocument();
|
if (!isset($this->document))
|
||||||
$document->setTitle(JText::_($isNew ? 'COM_###COMPONENT###_###VIEW###_NEW' : 'COM_###COMPONENT###_###VIEW###_EDIT'));
|
{
|
||||||
$document->addStyleSheet(JURI::root() . "administrator/components/com_###component###/assets/css/###view###.css");###AJAXTOKE### ###LINKEDVIEWTABLESCRIPTS###
|
$this->document = JFactory::getDocument();
|
||||||
$document->addScript(JURI::root() . $this->script);
|
}
|
||||||
$document->addScript(JURI::root() . "administrator/components/com_###component###/views/###view###/submitbutton.js"); ###DOCUMENT_CUSTOM_PHP###
|
$this->document->setTitle(JText::_($isNew ? 'COM_###COMPONENT###_###VIEW###_NEW' : 'COM_###COMPONENT###_###VIEW###_EDIT'));
|
||||||
|
$this->document->addStyleSheet(JURI::root() . "administrator/components/com_###component###/assets/css/###view###.css");###AJAXTOKE### ###LINKEDVIEWTABLESCRIPTS###
|
||||||
|
$this->document->addScript(JURI::root() . $this->script);
|
||||||
|
$this->document->addScript(JURI::root() . "administrator/components/com_###component###/views/###view###/submitbutton.js"); ###DOCUMENT_CUSTOM_PHP###
|
||||||
JText::script('view not acceptable. Error');
|
JText::script('view not acceptable. Error');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -121,16 +121,19 @@ class ###Component###View###View### extends JViewLegacy
|
|||||||
protected function setDocument()
|
protected function setDocument()
|
||||||
{
|
{
|
||||||
$isNew = ($this->item->id < 1);
|
$isNew = ($this->item->id < 1);
|
||||||
$document = JFactory::getDocument();
|
if (!isset($this->document))
|
||||||
$document->setTitle(JText::_($isNew ? 'COM_###COMPONENT###_###VIEW###_NEW' : 'COM_###COMPONENT###_###VIEW###_EDIT'));
|
{
|
||||||
|
$this->document = JFactory::getDocument();
|
||||||
|
}
|
||||||
|
$this->document->setTitle(JText::_($isNew ? 'COM_###COMPONENT###_###VIEW###_NEW' : 'COM_###COMPONENT###_###VIEW###_EDIT'));
|
||||||
// we need this to fix the form display
|
// we need this to fix the form display
|
||||||
$document->addStyleSheet(JURI::root()."administrator/templates/isis/css/template.css");
|
$this->document->addStyleSheet(JURI::root()."administrator/templates/isis/css/template.css");
|
||||||
$document->addScript(JURI::root()."administrator/templates/isis/js/template.js");
|
$this->document->addScript(JURI::root()."administrator/templates/isis/js/template.js");
|
||||||
// the default style of this view
|
// the default style of this view
|
||||||
$document->addStyleSheet(JURI::root()."components/com_###component###/assets/css/###view###.css");###AJAXTOKE### ###LINKEDVIEWTABLESCRIPTS###
|
$this->document->addStyleSheet(JURI::root()."components/com_###component###/assets/css/###view###.css");###AJAXTOKE### ###LINKEDVIEWTABLESCRIPTS###
|
||||||
// default javascript of this view
|
// default javascript of this view
|
||||||
$document->addScript(JURI::root().$this->script);
|
$this->document->addScript(JURI::root().$this->script);
|
||||||
$document->addScript(JURI::root(). "components/com_###component###/views/###view###/submitbutton.js"); ###DOCUMENT_CUSTOM_PHP###
|
$this->document->addScript(JURI::root(). "components/com_###component###/views/###view###/submitbutton.js"); ###DOCUMENT_CUSTOM_PHP###
|
||||||
JText::script('view not acceptable. Error');
|
JText::script('view not acceptable. Error');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -197,9 +197,12 @@ class ###Component###View###Views### extends JViewLegacy
|
|||||||
*/
|
*/
|
||||||
protected function setDocument()
|
protected function setDocument()
|
||||||
{
|
{
|
||||||
$document = JFactory::getDocument();
|
if (!isset($this->document))
|
||||||
$document->setTitle(JText::_('COM_###COMPONENT###_###VIEWS###'));
|
{
|
||||||
$document->addStyleSheet(JURI::root() . "administrator/components/com_###component###/assets/css/###views###.css");
|
$this->document = JFactory::getDocument();
|
||||||
|
}
|
||||||
|
$this->document->setTitle(JText::_('COM_###COMPONENT###_###VIEWS###'));
|
||||||
|
$this->document->addStyleSheet(JURI::root() . "administrator/components/com_###component###/assets/css/###views###.css");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -54,7 +54,7 @@ class ###Component###View###SViews### extends JViewLegacy
|
|||||||
* Prepares the document
|
* Prepares the document
|
||||||
*/
|
*/
|
||||||
protected function setDocument()
|
protected function setDocument()
|
||||||
{###CUSTOM_ADMIN_UIKIT_LOADER### ###CUSTOM_ADMIN_GOOGLECHART_LOADER### ###CUSTOM_ADMIN_FOOTABLE_LOADER### ###CUSTOM_ADMIN_DOCUMENT_CUSTOM_PHP###
|
{###CUSTOM_ADMIN_LIBRARIES_LOADER### ###CUSTOM_ADMIN_UIKIT_LOADER### ###CUSTOM_ADMIN_GOOGLECHART_LOADER### ###CUSTOM_ADMIN_FOOTABLE_LOADER### ###CUSTOM_ADMIN_DOCUMENT_CUSTOM_PHP###
|
||||||
// add the document default css file
|
// add the document default css file
|
||||||
$this->document->addStyleSheet(JURI::root(true) .'/administrator/components/com_###component###/assets/css/###sviews###.css');###CUSTOM_ADMIN_DOCUMENT_CUSTOM_CSS### ###CUSTOM_ADMIN_DOCUMENT_CUSTOM_JS###
|
$this->document->addStyleSheet(JURI::root(true) .'/administrator/components/com_###component###/assets/css/###sviews###.css');###CUSTOM_ADMIN_DOCUMENT_CUSTOM_CSS### ###CUSTOM_ADMIN_DOCUMENT_CUSTOM_JS###
|
||||||
}
|
}
|
||||||
|
@ -52,7 +52,7 @@ class ###Component###View###SViews### extends JViewLegacy
|
|||||||
* Prepares the document
|
* Prepares the document
|
||||||
*/
|
*/
|
||||||
protected function _prepareDocument()
|
protected function _prepareDocument()
|
||||||
{###SITE_UIKIT_LOADER### ###SITE_GOOGLECHART_LOADER### ###SITE_FOOTABLE_LOADER### ###SITE_DOCUMENT_METADATA### ###SITE_DOCUMENT_CUSTOM_PHP###
|
{###SITE_LIBRARIES_LOADER### ###SITE_UIKIT_LOADER### ###SITE_GOOGLECHART_LOADER### ###SITE_FOOTABLE_LOADER### ###SITE_DOCUMENT_METADATA### ###SITE_DOCUMENT_CUSTOM_PHP###
|
||||||
// add the document default css file
|
// add the document default css file
|
||||||
$this->document->addStyleSheet(JURI::root(true) .'/components/com_###component###/assets/css/###sview###.css');###SITE_DOCUMENT_CUSTOM_CSS### ###SITE_DOCUMENT_CUSTOM_JS###
|
$this->document->addStyleSheet(JURI::root(true) .'/components/com_###component###/assets/css/###sview###.css');###SITE_DOCUMENT_CUSTOM_CSS### ###SITE_DOCUMENT_CUSTOM_JS###
|
||||||
}
|
}
|
||||||
|
@ -52,7 +52,7 @@ class ###Component###View###SView### extends JViewLegacy
|
|||||||
* Prepares the document
|
* Prepares the document
|
||||||
*/
|
*/
|
||||||
protected function _prepareDocument()
|
protected function _prepareDocument()
|
||||||
{###SITE_UIKIT_LOADER### ###SITE_GOOGLECHART_LOADER### ###SITE_FOOTABLE_LOADER### ###SITE_DOCUMENT_METADATA### ###SITE_DOCUMENT_CUSTOM_PHP###
|
{###SITE_LIBRARIES_LOADER### ###SITE_UIKIT_LOADER### ###SITE_GOOGLECHART_LOADER### ###SITE_FOOTABLE_LOADER### ###SITE_DOCUMENT_METADATA### ###SITE_DOCUMENT_CUSTOM_PHP###
|
||||||
// add the document default css file
|
// add the document default css file
|
||||||
$this->document->addStyleSheet(JURI::root(true) .'/components/com_###component###/assets/css/###sview###.css');###SITE_DOCUMENT_CUSTOM_CSS### ###SITE_DOCUMENT_CUSTOM_JS###
|
$this->document->addStyleSheet(JURI::root(true) .'/components/com_###component###/assets/css/###sview###.css');###SITE_DOCUMENT_CUSTOM_CSS### ###SITE_DOCUMENT_CUSTOM_JS###
|
||||||
}
|
}
|
||||||
|
211
admin/config.xml
211
admin/config.xml
@ -48,22 +48,18 @@
|
|||||||
<field type="spacer" name="spacerHistory" hr="true" />
|
<field type="spacer" name="spacerHistory" hr="true" />
|
||||||
|
|
||||||
<!-- Minify Field. Type: Radio. (joomla) -->
|
<!-- Minify Field. Type: Radio. (joomla) -->
|
||||||
<field
|
<field type="radio"
|
||||||
type="radio"
|
|
||||||
name="minify"
|
name="minify"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_MINIFY_LABEL"
|
label="COM_COMPONENTBUILDER_CONFIG_MINIFY_LABEL"
|
||||||
description="COM_COMPONENTBUILDER_CONFIG_MINIFY_DESCRIPTION"
|
description="COM_COMPONENTBUILDER_CONFIG_MINIFY_DESCRIPTION"
|
||||||
class="btn-group btn-group-yesno"
|
class="btn-group btn-group-yesno"
|
||||||
default="0">
|
default="0">
|
||||||
<!-- Option Set. -->
|
<!-- Option Set.-->
|
||||||
<option value="1">
|
<option value="1">COM_COMPONENTBUILDER_CONFIG_YES</option>
|
||||||
COM_COMPONENTBUILDER_CONFIG_YES</option>
|
<option value="0">COM_COMPONENTBUILDER_CONFIG_NO</option>
|
||||||
<option value="0">
|
|
||||||
COM_COMPONENTBUILDER_CONFIG_NO</option>
|
|
||||||
</field>
|
</field>
|
||||||
<!-- Percentagelanguageadd Field. Type: Number. (joomla) -->
|
<!-- Percentagelanguageadd Field. Type: Number. (joomla) -->
|
||||||
<field
|
<field type="number"
|
||||||
type="number"
|
|
||||||
name="percentagelanguageadd"
|
name="percentagelanguageadd"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_PERCENTAGELANGUAGEADD_LABEL"
|
label="COM_COMPONENTBUILDER_CONFIG_PERCENTAGELANGUAGEADD_LABEL"
|
||||||
default="50"
|
default="50"
|
||||||
@ -72,35 +68,31 @@
|
|||||||
required="true"
|
required="true"
|
||||||
min="10"
|
min="10"
|
||||||
max="100"
|
max="100"
|
||||||
step="10"
|
step="10" />
|
||||||
/>
|
|
||||||
<!-- Spacer_hr_a Field. Type: Spacer. A None Database Field. (joomla) -->
|
<!-- Spacer_hr_a Field. Type: Spacer. A None Database Field. (joomla) -->
|
||||||
<field type="spacer" name="spacer_hr_a" hr="true" class="spacer_hr_a" />
|
<field type="spacer"
|
||||||
|
name="spacer_hr_a"
|
||||||
|
hr="true"
|
||||||
|
class="spacer_hr_a" />
|
||||||
<!-- Api Field. Type: User. (joomla) -->
|
<!-- Api Field. Type: User. (joomla) -->
|
||||||
<field
|
<field type="user"
|
||||||
type="user"
|
|
||||||
name="api"
|
name="api"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_API_LABEL"
|
label="COM_COMPONENTBUILDER_CONFIG_API_LABEL"
|
||||||
description="COM_COMPONENTBUILDER_CONFIG_API_DESCRIPTION"
|
description="COM_COMPONENTBUILDER_CONFIG_API_DESCRIPTION" />
|
||||||
/>
|
|
||||||
<!-- Set_browser_storage Field. Type: Radio. (joomla) -->
|
<!-- Set_browser_storage Field. Type: Radio. (joomla) -->
|
||||||
<field
|
<field type="radio"
|
||||||
type="radio"
|
|
||||||
name="set_browser_storage"
|
name="set_browser_storage"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_SET_BROWSER_STORAGE_LABEL"
|
label="COM_COMPONENTBUILDER_CONFIG_SET_BROWSER_STORAGE_LABEL"
|
||||||
description="COM_COMPONENTBUILDER_CONFIG_SET_BROWSER_STORAGE_DESCRIPTION"
|
description="COM_COMPONENTBUILDER_CONFIG_SET_BROWSER_STORAGE_DESCRIPTION"
|
||||||
class="btn-group btn-group-yesno"
|
class="btn-group btn-group-yesno"
|
||||||
default="1"
|
default="1"
|
||||||
required="true">
|
required="true">
|
||||||
<!-- Option Set. -->
|
<!-- Option Set.-->
|
||||||
<option value="1">
|
<option value="1">COM_COMPONENTBUILDER_CONFIG_ACTIVE</option>
|
||||||
COM_COMPONENTBUILDER_CONFIG_ACTIVE</option>
|
<option value="0">COM_COMPONENTBUILDER_CONFIG_INACTIVE</option>
|
||||||
<option value="0">
|
|
||||||
COM_COMPONENTBUILDER_CONFIG_INACTIVE</option>
|
|
||||||
</field>
|
</field>
|
||||||
<!-- Storage_time_to_live Field. Type: List. (joomla) -->
|
<!-- Storage_time_to_live Field. Type: List. (joomla) -->
|
||||||
<field
|
<field type="list"
|
||||||
type="list"
|
|
||||||
name="storage_time_to_live"
|
name="storage_time_to_live"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_STORAGE_TIME_TO_LIVE_LABEL"
|
label="COM_COMPONENTBUILDER_CONFIG_STORAGE_TIME_TO_LIVE_LABEL"
|
||||||
description="COM_COMPONENTBUILDER_CONFIG_STORAGE_TIME_TO_LIVE_DESCRIPTION"
|
description="COM_COMPONENTBUILDER_CONFIG_STORAGE_TIME_TO_LIVE_DESCRIPTION"
|
||||||
@ -108,34 +100,25 @@
|
|||||||
multiple="false"
|
multiple="false"
|
||||||
default="global"
|
default="global"
|
||||||
showon="set_browser_storage:1">
|
showon="set_browser_storage:1">
|
||||||
<!-- Option Set. -->
|
<!-- Option Set.-->
|
||||||
<option value="global">
|
<option value="global">COM_COMPONENTBUILDER_CONFIG_EVERY_SESSION</option>
|
||||||
COM_COMPONENTBUILDER_CONFIG_EVERY_SESSION</option>
|
<option value="30">COM_COMPONENTBUILDER_CONFIG_EVERY_THIRTY_SECONDS</option>
|
||||||
<option value="30">
|
<option value="60">COM_COMPONENTBUILDER_CONFIG_EVERY_MINUTE</option>
|
||||||
COM_COMPONENTBUILDER_CONFIG_EVERY_THIRTY_SECONDS</option>
|
<option value="300">COM_COMPONENTBUILDER_CONFIG_EVERY_FIVE_MINUTES</option>
|
||||||
<option value="60">
|
<option value="900">COM_COMPONENTBUILDER_CONFIG_EVERY_FIFTEEN_MINUTES</option>
|
||||||
COM_COMPONENTBUILDER_CONFIG_EVERY_MINUTE</option>
|
<option value="1800">COM_COMPONENTBUILDER_CONFIG_EVERY_THIRTY_MINUTES</option>
|
||||||
<option value="300">
|
<option value="3600">COM_COMPONENTBUILDER_CONFIG_EVERY_HOUR</option>
|
||||||
COM_COMPONENTBUILDER_CONFIG_EVERY_FIVE_MINUTES</option>
|
<option value="18000">COM_COMPONENTBUILDER_CONFIG_EVERY_FIVE_HOURS</option>
|
||||||
<option value="900">
|
<option value="36000">COM_COMPONENTBUILDER_CONFIG_EVERY_TEN_HOURS</option>
|
||||||
COM_COMPONENTBUILDER_CONFIG_EVERY_FIFTEEN_MINUTES</option>
|
<option value="86400">COM_COMPONENTBUILDER_CONFIG_EVERY_DAY</option>
|
||||||
<option value="1800">
|
<option value="604800">COM_COMPONENTBUILDER_CONFIG_EVERY_WEEK</option>
|
||||||
COM_COMPONENTBUILDER_CONFIG_EVERY_THIRTY_MINUTES</option>
|
<option value="0">COM_COMPONENTBUILDER_CONFIG_NEVER_UPDATE</option>
|
||||||
<option value="3600">
|
|
||||||
COM_COMPONENTBUILDER_CONFIG_EVERY_HOUR</option>
|
|
||||||
<option value="18000">
|
|
||||||
COM_COMPONENTBUILDER_CONFIG_EVERY_FIVE_HOURS</option>
|
|
||||||
<option value="36000">
|
|
||||||
COM_COMPONENTBUILDER_CONFIG_EVERY_TEN_HOURS</option>
|
|
||||||
<option value="86400">
|
|
||||||
COM_COMPONENTBUILDER_CONFIG_EVERY_DAY</option>
|
|
||||||
<option value="604800">
|
|
||||||
COM_COMPONENTBUILDER_CONFIG_EVERY_WEEK</option>
|
|
||||||
<option value="0">
|
|
||||||
COM_COMPONENTBUILDER_CONFIG_NEVER_UPDATE</option>
|
|
||||||
</field>
|
</field>
|
||||||
<!-- Spacer_hr_b Field. Type: Spacer. A None Database Field. (joomla) -->
|
<!-- Spacer_hr_b Field. Type: Spacer. A None Database Field. (joomla) -->
|
||||||
<field type="spacer" name="spacer_hr_b" hr="true" class="spacer_hr_b" />
|
<field type="spacer"
|
||||||
|
name="spacer_hr_b"
|
||||||
|
hr="true"
|
||||||
|
class="spacer_hr_b" />
|
||||||
<field name="autorTitle"
|
<field name="autorTitle"
|
||||||
type="spacer"
|
type="spacer"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_AUTHOR"
|
label="COM_COMPONENTBUILDER_CONFIG_AUTHOR"
|
||||||
@ -558,10 +541,14 @@
|
|||||||
label="COM_COMPONENTBUILDER_CONFIG_CRONJOB">
|
label="COM_COMPONENTBUILDER_CONFIG_CRONJOB">
|
||||||
|
|
||||||
<!-- Backupcronjob_note Field. Type: Note. A None Database Field. (joomla) -->
|
<!-- Backupcronjob_note Field. Type: Note. A None Database Field. (joomla) -->
|
||||||
<field type="note" name="backupcronjob_note" label="COM_COMPONENTBUILDER_CONFIG_BACKUPCRONJOB_NOTE_LABEL" description="COM_COMPONENTBUILDER_CONFIG_BACKUPCRONJOB_NOTE_DESCRIPTION" heading="h4" class="backupcronjob_note" />
|
<field type="note"
|
||||||
|
name="backupcronjob_note"
|
||||||
|
label="COM_COMPONENTBUILDER_CONFIG_BACKUPCRONJOB_NOTE_LABEL"
|
||||||
|
description="COM_COMPONENTBUILDER_CONFIG_BACKUPCRONJOB_NOTE_DESCRIPTION"
|
||||||
|
heading="h4"
|
||||||
|
class="backupcronjob_note" />
|
||||||
<!-- Cronjob_backup_folder_path Field. Type: Text. (joomla) -->
|
<!-- Cronjob_backup_folder_path Field. Type: Text. (joomla) -->
|
||||||
<field
|
<field type="text"
|
||||||
type="text"
|
|
||||||
name="cronjob_backup_folder_path"
|
name="cronjob_backup_folder_path"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_CRONJOB_BACKUP_FOLDER_PATH_LABEL"
|
label="COM_COMPONENTBUILDER_CONFIG_CRONJOB_BACKUP_FOLDER_PATH_LABEL"
|
||||||
size="70"
|
size="70"
|
||||||
@ -573,11 +560,9 @@
|
|||||||
required="false"
|
required="false"
|
||||||
filter="PATH"
|
filter="PATH"
|
||||||
message="COM_COMPONENTBUILDER_CONFIG_CRONJOB_BACKUP_FOLDER_PATH_MESSAGE"
|
message="COM_COMPONENTBUILDER_CONFIG_CRONJOB_BACKUP_FOLDER_PATH_MESSAGE"
|
||||||
hint="COM_COMPONENTBUILDER_CONFIG_CRONJOB_BACKUP_FOLDER_PATH_HINT"
|
hint="COM_COMPONENTBUILDER_CONFIG_CRONJOB_BACKUP_FOLDER_PATH_HINT" />
|
||||||
/>
|
|
||||||
<!-- Backup_email Field. Type: Text. (joomla) -->
|
<!-- Backup_email Field. Type: Text. (joomla) -->
|
||||||
<field
|
<field type="text"
|
||||||
type="text"
|
|
||||||
name="backup_email"
|
name="backup_email"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_BACKUP_EMAIL_LABEL"
|
label="COM_COMPONENTBUILDER_CONFIG_BACKUP_EMAIL_LABEL"
|
||||||
size="10"
|
size="10"
|
||||||
@ -587,13 +572,16 @@
|
|||||||
filter="STRING"
|
filter="STRING"
|
||||||
validate="email"
|
validate="email"
|
||||||
message="COM_COMPONENTBUILDER_CONFIG_BACKUP_EMAIL_MESSAGE"
|
message="COM_COMPONENTBUILDER_CONFIG_BACKUP_EMAIL_MESSAGE"
|
||||||
hint="COM_COMPONENTBUILDER_CONFIG_BACKUP_EMAIL_HINT"
|
hint="COM_COMPONENTBUILDER_CONFIG_BACKUP_EMAIL_HINT" />
|
||||||
/>
|
|
||||||
<!-- Package_name_plaeholders Field. Type: Note. A None Database Field. (joomla) -->
|
<!-- Package_name_plaeholders Field. Type: Note. A None Database Field. (joomla) -->
|
||||||
<field type="note" name="package_name_plaeholders" label="COM_COMPONENTBUILDER_CONFIG_PACKAGE_NAME_PLAEHOLDERS_LABEL" description="COM_COMPONENTBUILDER_CONFIG_PACKAGE_NAME_PLAEHOLDERS_DESCRIPTION" heading="h4" class="package_name_plaeholders" />
|
<field type="note"
|
||||||
|
name="package_name_plaeholders"
|
||||||
|
label="COM_COMPONENTBUILDER_CONFIG_PACKAGE_NAME_PLAEHOLDERS_LABEL"
|
||||||
|
description="COM_COMPONENTBUILDER_CONFIG_PACKAGE_NAME_PLAEHOLDERS_DESCRIPTION"
|
||||||
|
heading="h4"
|
||||||
|
class="package_name_plaeholders" />
|
||||||
<!-- Backup_package_name Field. Type: Text. (joomla) -->
|
<!-- Backup_package_name Field. Type: Text. (joomla) -->
|
||||||
<field
|
<field type="text"
|
||||||
type="text"
|
|
||||||
name="backup_package_name"
|
name="backup_package_name"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_BACKUP_PACKAGE_NAME_LABEL"
|
label="COM_COMPONENTBUILDER_CONFIG_BACKUP_PACKAGE_NAME_LABEL"
|
||||||
size="40"
|
size="40"
|
||||||
@ -606,18 +594,21 @@
|
|||||||
required="true"
|
required="true"
|
||||||
filter="STRING"
|
filter="STRING"
|
||||||
message="COM_COMPONENTBUILDER_CONFIG_BACKUP_PACKAGE_NAME_MESSAGE"
|
message="COM_COMPONENTBUILDER_CONFIG_BACKUP_PACKAGE_NAME_MESSAGE"
|
||||||
hint="COM_COMPONENTBUILDER_CONFIG_BACKUP_PACKAGE_NAME_HINT"
|
hint="COM_COMPONENTBUILDER_CONFIG_BACKUP_PACKAGE_NAME_HINT" />
|
||||||
/>
|
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<fieldset
|
<fieldset
|
||||||
name="folder_paths_custom_config"
|
name="folder_paths_custom_config"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_FOLDER_PATHS">
|
label="COM_COMPONENTBUILDER_CONFIG_FOLDER_PATHS">
|
||||||
|
|
||||||
<!-- Note_compiler_folder_path Field. Type: Note. A None Database Field. (joomla) -->
|
<!-- Note_compiler_folder_path Field. Type: Note. A None Database Field. (joomla) -->
|
||||||
<field type="note" name="note_compiler_folder_path" label="COM_COMPONENTBUILDER_CONFIG_NOTE_COMPILER_FOLDER_PATH_LABEL" description="COM_COMPONENTBUILDER_CONFIG_NOTE_COMPILER_FOLDER_PATH_DESCRIPTION" heading="h4" class="alert alert-info note_compiler_folder_path" />
|
<field type="note"
|
||||||
|
name="note_compiler_folder_path"
|
||||||
|
label="COM_COMPONENTBUILDER_CONFIG_NOTE_COMPILER_FOLDER_PATH_LABEL"
|
||||||
|
description="COM_COMPONENTBUILDER_CONFIG_NOTE_COMPILER_FOLDER_PATH_DESCRIPTION"
|
||||||
|
heading="h4"
|
||||||
|
class="alert alert-info note_compiler_folder_path" />
|
||||||
<!-- Compiler_folder_path Field. Type: Text. (joomla) -->
|
<!-- Compiler_folder_path Field. Type: Text. (joomla) -->
|
||||||
<field
|
<field type="text"
|
||||||
type="text"
|
|
||||||
name="compiler_folder_path"
|
name="compiler_folder_path"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_COMPILER_FOLDER_PATH_LABEL"
|
label="COM_COMPONENTBUILDER_CONFIG_COMPILER_FOLDER_PATH_LABEL"
|
||||||
size="70"
|
size="70"
|
||||||
@ -629,13 +620,16 @@
|
|||||||
required="false"
|
required="false"
|
||||||
filter="PATH"
|
filter="PATH"
|
||||||
message="COM_COMPONENTBUILDER_CONFIG_COMPILER_FOLDER_PATH_MESSAGE"
|
message="COM_COMPONENTBUILDER_CONFIG_COMPILER_FOLDER_PATH_MESSAGE"
|
||||||
hint="COM_COMPONENTBUILDER_CONFIG_COMPILER_FOLDER_PATH_HINT"
|
hint="COM_COMPONENTBUILDER_CONFIG_COMPILER_FOLDER_PATH_HINT" />
|
||||||
/>
|
|
||||||
<!-- Note_custom_folder_path Field. Type: Note. A None Database Field. (joomla) -->
|
<!-- Note_custom_folder_path Field. Type: Note. A None Database Field. (joomla) -->
|
||||||
<field type="note" name="note_custom_folder_path" label="COM_COMPONENTBUILDER_CONFIG_NOTE_CUSTOM_FOLDER_PATH_LABEL" description="COM_COMPONENTBUILDER_CONFIG_NOTE_CUSTOM_FOLDER_PATH_DESCRIPTION" heading="h4" class="alert alert-info note_custom_folder_path" />
|
<field type="note"
|
||||||
|
name="note_custom_folder_path"
|
||||||
|
label="COM_COMPONENTBUILDER_CONFIG_NOTE_CUSTOM_FOLDER_PATH_LABEL"
|
||||||
|
description="COM_COMPONENTBUILDER_CONFIG_NOTE_CUSTOM_FOLDER_PATH_DESCRIPTION"
|
||||||
|
heading="h4"
|
||||||
|
class="alert alert-info note_custom_folder_path" />
|
||||||
<!-- Custom_folder_path Field. Type: Text. (joomla) -->
|
<!-- Custom_folder_path Field. Type: Text. (joomla) -->
|
||||||
<field
|
<field type="text"
|
||||||
type="text"
|
|
||||||
name="custom_folder_path"
|
name="custom_folder_path"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_CUSTOM_FOLDER_PATH_LABEL"
|
label="COM_COMPONENTBUILDER_CONFIG_CUSTOM_FOLDER_PATH_LABEL"
|
||||||
size="70"
|
size="70"
|
||||||
@ -647,13 +641,16 @@
|
|||||||
required="false"
|
required="false"
|
||||||
filter="PATH"
|
filter="PATH"
|
||||||
message="COM_COMPONENTBUILDER_CONFIG_CUSTOM_FOLDER_PATH_MESSAGE"
|
message="COM_COMPONENTBUILDER_CONFIG_CUSTOM_FOLDER_PATH_MESSAGE"
|
||||||
hint="COM_COMPONENTBUILDER_CONFIG_CUSTOM_FOLDER_PATH_HINT"
|
hint="COM_COMPONENTBUILDER_CONFIG_CUSTOM_FOLDER_PATH_HINT" />
|
||||||
/>
|
|
||||||
<!-- Note_backup_folder_path Field. Type: Note. A None Database Field. (joomla) -->
|
<!-- Note_backup_folder_path Field. Type: Note. A None Database Field. (joomla) -->
|
||||||
<field type="note" name="note_backup_folder_path" label="COM_COMPONENTBUILDER_CONFIG_NOTE_BACKUP_FOLDER_PATH_LABEL" description="COM_COMPONENTBUILDER_CONFIG_NOTE_BACKUP_FOLDER_PATH_DESCRIPTION" heading="h4" class="alert alert-info note_backup_folder_path" />
|
<field type="note"
|
||||||
|
name="note_backup_folder_path"
|
||||||
|
label="COM_COMPONENTBUILDER_CONFIG_NOTE_BACKUP_FOLDER_PATH_LABEL"
|
||||||
|
description="COM_COMPONENTBUILDER_CONFIG_NOTE_BACKUP_FOLDER_PATH_DESCRIPTION"
|
||||||
|
heading="h4"
|
||||||
|
class="alert alert-info note_backup_folder_path" />
|
||||||
<!-- Backup_folder_path Field. Type: Text. (joomla) -->
|
<!-- Backup_folder_path Field. Type: Text. (joomla) -->
|
||||||
<field
|
<field type="text"
|
||||||
type="text"
|
|
||||||
name="backup_folder_path"
|
name="backup_folder_path"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_BACKUP_FOLDER_PATH_LABEL"
|
label="COM_COMPONENTBUILDER_CONFIG_BACKUP_FOLDER_PATH_LABEL"
|
||||||
size="70"
|
size="70"
|
||||||
@ -665,13 +662,16 @@
|
|||||||
required="false"
|
required="false"
|
||||||
filter="PATH"
|
filter="PATH"
|
||||||
message="COM_COMPONENTBUILDER_CONFIG_BACKUP_FOLDER_PATH_MESSAGE"
|
message="COM_COMPONENTBUILDER_CONFIG_BACKUP_FOLDER_PATH_MESSAGE"
|
||||||
hint="COM_COMPONENTBUILDER_CONFIG_BACKUP_FOLDER_PATH_HINT"
|
hint="COM_COMPONENTBUILDER_CONFIG_BACKUP_FOLDER_PATH_HINT" />
|
||||||
/>
|
|
||||||
<!-- Note_git_folder_path Field. Type: Note. A None Database Field. (joomla) -->
|
<!-- Note_git_folder_path Field. Type: Note. A None Database Field. (joomla) -->
|
||||||
<field type="note" name="note_git_folder_path" label="COM_COMPONENTBUILDER_CONFIG_NOTE_GIT_FOLDER_PATH_LABEL" description="COM_COMPONENTBUILDER_CONFIG_NOTE_GIT_FOLDER_PATH_DESCRIPTION" heading="h4" class="alert alert-info note_git_folder_path" />
|
<field type="note"
|
||||||
|
name="note_git_folder_path"
|
||||||
|
label="COM_COMPONENTBUILDER_CONFIG_NOTE_GIT_FOLDER_PATH_LABEL"
|
||||||
|
description="COM_COMPONENTBUILDER_CONFIG_NOTE_GIT_FOLDER_PATH_DESCRIPTION"
|
||||||
|
heading="h4"
|
||||||
|
class="alert alert-info note_git_folder_path" />
|
||||||
<!-- Git_folder_path Field. Type: Text. (joomla) -->
|
<!-- Git_folder_path Field. Type: Text. (joomla) -->
|
||||||
<field
|
<field type="text"
|
||||||
type="text"
|
|
||||||
name="git_folder_path"
|
name="git_folder_path"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_GIT_FOLDER_PATH_LABEL"
|
label="COM_COMPONENTBUILDER_CONFIG_GIT_FOLDER_PATH_LABEL"
|
||||||
size="70"
|
size="70"
|
||||||
@ -683,16 +683,14 @@
|
|||||||
required="false"
|
required="false"
|
||||||
filter="PATH"
|
filter="PATH"
|
||||||
message="COM_COMPONENTBUILDER_CONFIG_GIT_FOLDER_PATH_MESSAGE"
|
message="COM_COMPONENTBUILDER_CONFIG_GIT_FOLDER_PATH_MESSAGE"
|
||||||
hint="COM_COMPONENTBUILDER_CONFIG_GIT_FOLDER_PATH_HINT"
|
hint="COM_COMPONENTBUILDER_CONFIG_GIT_FOLDER_PATH_HINT" />
|
||||||
/>
|
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<fieldset
|
<fieldset
|
||||||
name="company_custom_config"
|
name="company_custom_config"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_COMPANY">
|
label="COM_COMPONENTBUILDER_CONFIG_COMPANY">
|
||||||
|
|
||||||
<!-- Export_company Field. Type: Text. (joomla) -->
|
<!-- Export_company Field. Type: Text. (joomla) -->
|
||||||
<field
|
<field type="text"
|
||||||
type="text"
|
|
||||||
name="export_company"
|
name="export_company"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_EXPORT_COMPANY_LABEL"
|
label="COM_COMPONENTBUILDER_CONFIG_EXPORT_COMPANY_LABEL"
|
||||||
size="40"
|
size="40"
|
||||||
@ -704,11 +702,9 @@
|
|||||||
required="true"
|
required="true"
|
||||||
filter="STRING"
|
filter="STRING"
|
||||||
message="COM_COMPONENTBUILDER_CONFIG_EXPORT_COMPANY_MESSAGE"
|
message="COM_COMPONENTBUILDER_CONFIG_EXPORT_COMPANY_MESSAGE"
|
||||||
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_COMPANY_HINT"
|
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_COMPANY_HINT" />
|
||||||
/>
|
|
||||||
<!-- Export_owner Field. Type: Text. (joomla) -->
|
<!-- Export_owner Field. Type: Text. (joomla) -->
|
||||||
<field
|
<field type="text"
|
||||||
type="text"
|
|
||||||
name="export_owner"
|
name="export_owner"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_EXPORT_OWNER_LABEL"
|
label="COM_COMPONENTBUILDER_CONFIG_EXPORT_OWNER_LABEL"
|
||||||
size="10"
|
size="10"
|
||||||
@ -720,11 +716,9 @@
|
|||||||
required="true"
|
required="true"
|
||||||
filter="HTML"
|
filter="HTML"
|
||||||
message="COM_COMPONENTBUILDER_CONFIG_EXPORT_OWNER_MESSAGE"
|
message="COM_COMPONENTBUILDER_CONFIG_EXPORT_OWNER_MESSAGE"
|
||||||
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_OWNER_HINT"
|
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_OWNER_HINT" />
|
||||||
/>
|
|
||||||
<!-- Export_email Field. Type: Text. (joomla) -->
|
<!-- Export_email Field. Type: Text. (joomla) -->
|
||||||
<field
|
<field type="text"
|
||||||
type="text"
|
|
||||||
name="export_email"
|
name="export_email"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_EXPORT_EMAIL_LABEL"
|
label="COM_COMPONENTBUILDER_CONFIG_EXPORT_EMAIL_LABEL"
|
||||||
size="40"
|
size="40"
|
||||||
@ -735,11 +729,9 @@
|
|||||||
filter="STRING"
|
filter="STRING"
|
||||||
validate="email"
|
validate="email"
|
||||||
message="COM_COMPONENTBUILDER_CONFIG_EXPORT_EMAIL_MESSAGE"
|
message="COM_COMPONENTBUILDER_CONFIG_EXPORT_EMAIL_MESSAGE"
|
||||||
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_EMAIL_HINT"
|
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_EMAIL_HINT" />
|
||||||
/>
|
|
||||||
<!-- Export_website Field. Type: Url. (joomla) -->
|
<!-- Export_website Field. Type: Url. (joomla) -->
|
||||||
<field
|
<field type="url"
|
||||||
type="url"
|
|
||||||
name="export_website"
|
name="export_website"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_EXPORT_WEBSITE_LABEL"
|
label="COM_COMPONENTBUILDER_CONFIG_EXPORT_WEBSITE_LABEL"
|
||||||
size="60"
|
size="60"
|
||||||
@ -750,11 +742,9 @@
|
|||||||
filter="url"
|
filter="url"
|
||||||
validated="url"
|
validated="url"
|
||||||
message="COM_COMPONENTBUILDER_CONFIG_EXPORT_WEBSITE_MESSAGE"
|
message="COM_COMPONENTBUILDER_CONFIG_EXPORT_WEBSITE_MESSAGE"
|
||||||
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_WEBSITE_HINT"
|
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_WEBSITE_HINT" />
|
||||||
/>
|
|
||||||
<!-- Export_license Field. Type: Textarea. (joomla) -->
|
<!-- Export_license Field. Type: Textarea. (joomla) -->
|
||||||
<field
|
<field type="textarea"
|
||||||
type="textarea"
|
|
||||||
name="export_license"
|
name="export_license"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_EXPORT_LICENSE_LABEL"
|
label="COM_COMPONENTBUILDER_CONFIG_EXPORT_LICENSE_LABEL"
|
||||||
rows="7"
|
rows="7"
|
||||||
@ -764,11 +754,9 @@
|
|||||||
class="text_area span12"
|
class="text_area span12"
|
||||||
filter="HTML"
|
filter="HTML"
|
||||||
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_LICENSE_HINT"
|
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_LICENSE_HINT"
|
||||||
required="true"
|
required="true" />
|
||||||
/>
|
|
||||||
<!-- Export_copyright Field. Type: Textarea. (joomla) -->
|
<!-- Export_copyright Field. Type: Textarea. (joomla) -->
|
||||||
<field
|
<field type="textarea"
|
||||||
type="textarea"
|
|
||||||
name="export_copyright"
|
name="export_copyright"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_EXPORT_COPYRIGHT_LABEL"
|
label="COM_COMPONENTBUILDER_CONFIG_EXPORT_COPYRIGHT_LABEL"
|
||||||
rows="7"
|
rows="7"
|
||||||
@ -778,11 +766,9 @@
|
|||||||
class="text_area span12"
|
class="text_area span12"
|
||||||
filter="HTML"
|
filter="HTML"
|
||||||
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_COPYRIGHT_HINT"
|
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_COPYRIGHT_HINT"
|
||||||
required="true"
|
required="true" />
|
||||||
/>
|
|
||||||
<!-- Export_buy_link Field. Type: Url. (joomla) -->
|
<!-- Export_buy_link Field. Type: Url. (joomla) -->
|
||||||
<field
|
<field type="url"
|
||||||
type="url"
|
|
||||||
name="export_buy_link"
|
name="export_buy_link"
|
||||||
label="COM_COMPONENTBUILDER_CONFIG_EXPORT_BUY_LINK_LABEL"
|
label="COM_COMPONENTBUILDER_CONFIG_EXPORT_BUY_LINK_LABEL"
|
||||||
size="60"
|
size="60"
|
||||||
@ -793,8 +779,7 @@
|
|||||||
filter="url"
|
filter="url"
|
||||||
validated="url"
|
validated="url"
|
||||||
message="COM_COMPONENTBUILDER_CONFIG_EXPORT_BUY_LINK_MESSAGE"
|
message="COM_COMPONENTBUILDER_CONFIG_EXPORT_BUY_LINK_MESSAGE"
|
||||||
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_BUY_LINK_HINT"
|
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_BUY_LINK_HINT" />
|
||||||
/>
|
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<fieldset
|
<fieldset
|
||||||
name="permissions"
|
name="permissions"
|
||||||
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user