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:
Llewellyn van der Merwe 2017-12-10 21:17:26 +02:00
parent b60d208d9e
commit f900f65baa
No known key found for this signature in database
GPG Key ID: CAD7B16D27AF28C5
700 changed files with 12837 additions and 14154 deletions

View File

@ -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).

View File

@ -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).

View File

@ -649,6 +649,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)
{ {

View File

@ -644,6 +644,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)
{ {

View File

@ -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###
} }

View File

@ -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');
} }
} }

View File

@ -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');
} }
} }

View File

@ -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");
} }
/** /**

View File

@ -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###
} }

View File

@ -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###
} }

View File

@ -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###
} }

View File

@ -47,95 +47,78 @@
/> />
<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">COM_COMPONENTBUILDER_CONFIG_YES</option>
<option value="1"> <option value="0">COM_COMPONENTBUILDER_CONFIG_NO</option>
COM_COMPONENTBUILDER_CONFIG_YES</option> </field>
<option value="0"> <!-- Percentagelanguageadd Field. Type: Number. (joomla) -->
COM_COMPONENTBUILDER_CONFIG_NO</option> <field type="number"
</field> name="percentagelanguageadd"
<!-- Percentagelanguageadd Field. Type: Number. (joomla) --> label="COM_COMPONENTBUILDER_CONFIG_PERCENTAGELANGUAGEADD_LABEL"
<field default="50"
type="number" description="COM_COMPONENTBUILDER_CONFIG_PERCENTAGELANGUAGEADD_DESCRIPTION"
name="percentagelanguageadd" class="text_area"
label="COM_COMPONENTBUILDER_CONFIG_PERCENTAGELANGUAGEADD_LABEL" required="true"
default="50" min="10"
description="COM_COMPONENTBUILDER_CONFIG_PERCENTAGELANGUAGEADD_DESCRIPTION" max="100"
class="text_area" step="10" />
required="true" <!-- Spacer_hr_a Field. Type: Spacer. A None Database Field. (joomla) -->
min="10" <field type="spacer"
max="100" name="spacer_hr_a"
step="10" hr="true"
/> class="spacer_hr_a" />
<!-- Spacer_hr_a Field. Type: Spacer. A None Database Field. (joomla) --> <!-- Api Field. Type: User. (joomla) -->
<field type="spacer" name="spacer_hr_a" hr="true" class="spacer_hr_a" /> <field type="user"
<!-- Api Field. Type: User. (joomla) --> name="api"
<field label="COM_COMPONENTBUILDER_CONFIG_API_LABEL"
type="user" description="COM_COMPONENTBUILDER_CONFIG_API_DESCRIPTION" />
name="api" <!-- Set_browser_storage Field. Type: Radio. (joomla) -->
label="COM_COMPONENTBUILDER_CONFIG_API_LABEL" <field type="radio"
description="COM_COMPONENTBUILDER_CONFIG_API_DESCRIPTION" name="set_browser_storage"
/> label="COM_COMPONENTBUILDER_CONFIG_SET_BROWSER_STORAGE_LABEL"
<!-- Set_browser_storage Field. Type: Radio. (joomla) --> description="COM_COMPONENTBUILDER_CONFIG_SET_BROWSER_STORAGE_DESCRIPTION"
<field class="btn-group btn-group-yesno"
type="radio" default="1"
name="set_browser_storage" required="true">
label="COM_COMPONENTBUILDER_CONFIG_SET_BROWSER_STORAGE_LABEL" <!-- Option Set.-->
description="COM_COMPONENTBUILDER_CONFIG_SET_BROWSER_STORAGE_DESCRIPTION" <option value="1">COM_COMPONENTBUILDER_CONFIG_ACTIVE</option>
class="btn-group btn-group-yesno" <option value="0">COM_COMPONENTBUILDER_CONFIG_INACTIVE</option>
default="1" </field>
required="true"> <!-- Storage_time_to_live Field. Type: List. (joomla) -->
<!-- Option Set. --> <field type="list"
<option value="1"> name="storage_time_to_live"
COM_COMPONENTBUILDER_CONFIG_ACTIVE</option> label="COM_COMPONENTBUILDER_CONFIG_STORAGE_TIME_TO_LIVE_LABEL"
<option value="0"> description="COM_COMPONENTBUILDER_CONFIG_STORAGE_TIME_TO_LIVE_DESCRIPTION"
COM_COMPONENTBUILDER_CONFIG_INACTIVE</option> class="list_class"
</field> multiple="false"
<!-- Storage_time_to_live Field. Type: List. (joomla) --> default="global"
<field showon="set_browser_storage:1">
type="list" <!-- Option Set.-->
name="storage_time_to_live" <option value="global">COM_COMPONENTBUILDER_CONFIG_EVERY_SESSION</option>
label="COM_COMPONENTBUILDER_CONFIG_STORAGE_TIME_TO_LIVE_LABEL" <option value="30">COM_COMPONENTBUILDER_CONFIG_EVERY_THIRTY_SECONDS</option>
description="COM_COMPONENTBUILDER_CONFIG_STORAGE_TIME_TO_LIVE_DESCRIPTION" <option value="60">COM_COMPONENTBUILDER_CONFIG_EVERY_MINUTE</option>
class="list_class" <option value="300">COM_COMPONENTBUILDER_CONFIG_EVERY_FIVE_MINUTES</option>
multiple="false" <option value="900">COM_COMPONENTBUILDER_CONFIG_EVERY_FIFTEEN_MINUTES</option>
default="global" <option value="1800">COM_COMPONENTBUILDER_CONFIG_EVERY_THIRTY_MINUTES</option>
showon="set_browser_storage:1"> <option value="3600">COM_COMPONENTBUILDER_CONFIG_EVERY_HOUR</option>
<!-- Option Set. --> <option value="18000">COM_COMPONENTBUILDER_CONFIG_EVERY_FIVE_HOURS</option>
<option value="global"> <option value="36000">COM_COMPONENTBUILDER_CONFIG_EVERY_TEN_HOURS</option>
COM_COMPONENTBUILDER_CONFIG_EVERY_SESSION</option> <option value="86400">COM_COMPONENTBUILDER_CONFIG_EVERY_DAY</option>
<option value="30"> <option value="604800">COM_COMPONENTBUILDER_CONFIG_EVERY_WEEK</option>
COM_COMPONENTBUILDER_CONFIG_EVERY_THIRTY_SECONDS</option> <option value="0">COM_COMPONENTBUILDER_CONFIG_NEVER_UPDATE</option>
<option value="60"> </field>
COM_COMPONENTBUILDER_CONFIG_EVERY_MINUTE</option> <!-- Spacer_hr_b Field. Type: Spacer. A None Database Field. (joomla) -->
<option value="300"> <field type="spacer"
COM_COMPONENTBUILDER_CONFIG_EVERY_FIVE_MINUTES</option> name="spacer_hr_b"
<option value="900"> hr="true"
COM_COMPONENTBUILDER_CONFIG_EVERY_FIFTEEN_MINUTES</option> class="spacer_hr_b" />
<option value="1800">
COM_COMPONENTBUILDER_CONFIG_EVERY_THIRTY_MINUTES</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>
<!-- 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 name="autorTitle" <field name="autorTitle"
type="spacer" type="spacer"
label="COM_COMPONENTBUILDER_CONFIG_AUTHOR" label="COM_COMPONENTBUILDER_CONFIG_AUTHOR"
@ -557,244 +540,246 @@
name="cronjob_custom_config" name="cronjob_custom_config"
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"
<!-- Cronjob_backup_folder_path Field. Type: Text. (joomla) --> name="backupcronjob_note"
<field label="COM_COMPONENTBUILDER_CONFIG_BACKUPCRONJOB_NOTE_LABEL"
type="text" description="COM_COMPONENTBUILDER_CONFIG_BACKUPCRONJOB_NOTE_DESCRIPTION"
name="cronjob_backup_folder_path" heading="h4"
label="COM_COMPONENTBUILDER_CONFIG_CRONJOB_BACKUP_FOLDER_PATH_LABEL" class="backupcronjob_note" />
size="70" <!-- Cronjob_backup_folder_path Field. Type: Text. (joomla) -->
maxlength="150" <field type="text"
description="COM_COMPONENTBUILDER_CONFIG_CRONJOB_BACKUP_FOLDER_PATH_DESCRIPTION" name="cronjob_backup_folder_path"
class="text_area" label="COM_COMPONENTBUILDER_CONFIG_CRONJOB_BACKUP_FOLDER_PATH_LABEL"
readonly="false" size="70"
disabled="false" maxlength="150"
required="false" description="COM_COMPONENTBUILDER_CONFIG_CRONJOB_BACKUP_FOLDER_PATH_DESCRIPTION"
filter="PATH" class="text_area"
message="COM_COMPONENTBUILDER_CONFIG_CRONJOB_BACKUP_FOLDER_PATH_MESSAGE" readonly="false"
hint="COM_COMPONENTBUILDER_CONFIG_CRONJOB_BACKUP_FOLDER_PATH_HINT" disabled="false"
/> required="false"
<!-- Backup_email Field. Type: Text. (joomla) --> filter="PATH"
<field message="COM_COMPONENTBUILDER_CONFIG_CRONJOB_BACKUP_FOLDER_PATH_MESSAGE"
type="text" hint="COM_COMPONENTBUILDER_CONFIG_CRONJOB_BACKUP_FOLDER_PATH_HINT" />
name="backup_email" <!-- Backup_email Field. Type: Text. (joomla) -->
label="COM_COMPONENTBUILDER_CONFIG_BACKUP_EMAIL_LABEL" <field type="text"
size="10" name="backup_email"
maxlength="50" label="COM_COMPONENTBUILDER_CONFIG_BACKUP_EMAIL_LABEL"
description="COM_COMPONENTBUILDER_CONFIG_BACKUP_EMAIL_DESCRIPTION" size="10"
class="text_area" maxlength="50"
filter="STRING" description="COM_COMPONENTBUILDER_CONFIG_BACKUP_EMAIL_DESCRIPTION"
validate="email" class="text_area"
message="COM_COMPONENTBUILDER_CONFIG_BACKUP_EMAIL_MESSAGE" filter="STRING"
hint="COM_COMPONENTBUILDER_CONFIG_BACKUP_EMAIL_HINT" validate="email"
/> message="COM_COMPONENTBUILDER_CONFIG_BACKUP_EMAIL_MESSAGE"
<!-- Package_name_plaeholders Field. Type: Note. A None Database Field. (joomla) --> hint="COM_COMPONENTBUILDER_CONFIG_BACKUP_EMAIL_HINT" />
<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" /> <!-- Package_name_plaeholders Field. Type: Note. A None Database Field. (joomla) -->
<!-- Backup_package_name Field. Type: Text. (joomla) --> <field type="note"
<field name="package_name_plaeholders"
type="text" label="COM_COMPONENTBUILDER_CONFIG_PACKAGE_NAME_PLAEHOLDERS_LABEL"
name="backup_package_name" description="COM_COMPONENTBUILDER_CONFIG_PACKAGE_NAME_PLAEHOLDERS_DESCRIPTION"
label="COM_COMPONENTBUILDER_CONFIG_BACKUP_PACKAGE_NAME_LABEL" heading="h4"
size="40" class="package_name_plaeholders" />
maxlength="150" <!-- Backup_package_name Field. Type: Text. (joomla) -->
default="JCB_Backup_[YEAR]_[MONTH]_[DAY]" <field type="text"
description="COM_COMPONENTBUILDER_CONFIG_BACKUP_PACKAGE_NAME_DESCRIPTION" name="backup_package_name"
class="text_area" label="COM_COMPONENTBUILDER_CONFIG_BACKUP_PACKAGE_NAME_LABEL"
readonly="false" size="40"
disabled="false" maxlength="150"
required="true" default="JCB_Backup_[YEAR]_[MONTH]_[DAY]"
filter="STRING" description="COM_COMPONENTBUILDER_CONFIG_BACKUP_PACKAGE_NAME_DESCRIPTION"
message="COM_COMPONENTBUILDER_CONFIG_BACKUP_PACKAGE_NAME_MESSAGE" class="text_area"
hint="COM_COMPONENTBUILDER_CONFIG_BACKUP_PACKAGE_NAME_HINT" readonly="false"
/> disabled="false"
required="true"
filter="STRING"
message="COM_COMPONENTBUILDER_CONFIG_BACKUP_PACKAGE_NAME_MESSAGE"
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"
<!-- Compiler_folder_path Field. Type: Text. (joomla) --> name="note_compiler_folder_path"
<field label="COM_COMPONENTBUILDER_CONFIG_NOTE_COMPILER_FOLDER_PATH_LABEL"
type="text" description="COM_COMPONENTBUILDER_CONFIG_NOTE_COMPILER_FOLDER_PATH_DESCRIPTION"
name="compiler_folder_path" heading="h4"
label="COM_COMPONENTBUILDER_CONFIG_COMPILER_FOLDER_PATH_LABEL" class="alert alert-info note_compiler_folder_path" />
size="70" <!-- Compiler_folder_path Field. Type: Text. (joomla) -->
maxlength="150" <field type="text"
description="COM_COMPONENTBUILDER_CONFIG_COMPILER_FOLDER_PATH_DESCRIPTION" name="compiler_folder_path"
class="text_area" label="COM_COMPONENTBUILDER_CONFIG_COMPILER_FOLDER_PATH_LABEL"
readonly="false" size="70"
disabled="false" maxlength="150"
required="false" description="COM_COMPONENTBUILDER_CONFIG_COMPILER_FOLDER_PATH_DESCRIPTION"
filter="PATH" class="text_area"
message="COM_COMPONENTBUILDER_CONFIG_COMPILER_FOLDER_PATH_MESSAGE" readonly="false"
hint="COM_COMPONENTBUILDER_CONFIG_COMPILER_FOLDER_PATH_HINT" disabled="false"
/> required="false"
<!-- Note_custom_folder_path Field. Type: Note. A None Database Field. (joomla) --> filter="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" /> message="COM_COMPONENTBUILDER_CONFIG_COMPILER_FOLDER_PATH_MESSAGE"
<!-- Custom_folder_path Field. Type: Text. (joomla) --> hint="COM_COMPONENTBUILDER_CONFIG_COMPILER_FOLDER_PATH_HINT" />
<field <!-- Note_custom_folder_path Field. Type: Note. A None Database Field. (joomla) -->
type="text" <field type="note"
name="custom_folder_path" name="note_custom_folder_path"
label="COM_COMPONENTBUILDER_CONFIG_CUSTOM_FOLDER_PATH_LABEL" label="COM_COMPONENTBUILDER_CONFIG_NOTE_CUSTOM_FOLDER_PATH_LABEL"
size="70" description="COM_COMPONENTBUILDER_CONFIG_NOTE_CUSTOM_FOLDER_PATH_DESCRIPTION"
maxlength="150" heading="h4"
description="COM_COMPONENTBUILDER_CONFIG_CUSTOM_FOLDER_PATH_DESCRIPTION" class="alert alert-info note_custom_folder_path" />
class="text_area" <!-- Custom_folder_path Field. Type: Text. (joomla) -->
readonly="false" <field type="text"
disabled="false" name="custom_folder_path"
required="false" label="COM_COMPONENTBUILDER_CONFIG_CUSTOM_FOLDER_PATH_LABEL"
filter="PATH" size="70"
message="COM_COMPONENTBUILDER_CONFIG_CUSTOM_FOLDER_PATH_MESSAGE" maxlength="150"
hint="COM_COMPONENTBUILDER_CONFIG_CUSTOM_FOLDER_PATH_HINT" description="COM_COMPONENTBUILDER_CONFIG_CUSTOM_FOLDER_PATH_DESCRIPTION"
/> class="text_area"
<!-- Note_backup_folder_path Field. Type: Note. A None Database Field. (joomla) --> readonly="false"
<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" /> disabled="false"
<!-- Backup_folder_path Field. Type: Text. (joomla) --> required="false"
<field filter="PATH"
type="text" message="COM_COMPONENTBUILDER_CONFIG_CUSTOM_FOLDER_PATH_MESSAGE"
name="backup_folder_path" hint="COM_COMPONENTBUILDER_CONFIG_CUSTOM_FOLDER_PATH_HINT" />
label="COM_COMPONENTBUILDER_CONFIG_BACKUP_FOLDER_PATH_LABEL" <!-- Note_backup_folder_path Field. Type: Note. A None Database Field. (joomla) -->
size="70" <field type="note"
maxlength="150" name="note_backup_folder_path"
description="COM_COMPONENTBUILDER_CONFIG_BACKUP_FOLDER_PATH_DESCRIPTION" label="COM_COMPONENTBUILDER_CONFIG_NOTE_BACKUP_FOLDER_PATH_LABEL"
class="text_area" description="COM_COMPONENTBUILDER_CONFIG_NOTE_BACKUP_FOLDER_PATH_DESCRIPTION"
readonly="false" heading="h4"
disabled="false" class="alert alert-info note_backup_folder_path" />
required="false" <!-- Backup_folder_path Field. Type: Text. (joomla) -->
filter="PATH" <field type="text"
message="COM_COMPONENTBUILDER_CONFIG_BACKUP_FOLDER_PATH_MESSAGE" name="backup_folder_path"
hint="COM_COMPONENTBUILDER_CONFIG_BACKUP_FOLDER_PATH_HINT" label="COM_COMPONENTBUILDER_CONFIG_BACKUP_FOLDER_PATH_LABEL"
/> size="70"
<!-- Note_git_folder_path Field. Type: Note. A None Database Field. (joomla) --> maxlength="150"
<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" /> description="COM_COMPONENTBUILDER_CONFIG_BACKUP_FOLDER_PATH_DESCRIPTION"
<!-- Git_folder_path Field. Type: Text. (joomla) --> class="text_area"
<field readonly="false"
type="text" disabled="false"
name="git_folder_path" required="false"
label="COM_COMPONENTBUILDER_CONFIG_GIT_FOLDER_PATH_LABEL" filter="PATH"
size="70" message="COM_COMPONENTBUILDER_CONFIG_BACKUP_FOLDER_PATH_MESSAGE"
maxlength="150" hint="COM_COMPONENTBUILDER_CONFIG_BACKUP_FOLDER_PATH_HINT" />
description="COM_COMPONENTBUILDER_CONFIG_GIT_FOLDER_PATH_DESCRIPTION" <!-- Note_git_folder_path Field. Type: Note. A None Database Field. (joomla) -->
class="text_area" <field type="note"
readonly="false" name="note_git_folder_path"
disabled="false" label="COM_COMPONENTBUILDER_CONFIG_NOTE_GIT_FOLDER_PATH_LABEL"
required="false" description="COM_COMPONENTBUILDER_CONFIG_NOTE_GIT_FOLDER_PATH_DESCRIPTION"
filter="PATH" heading="h4"
message="COM_COMPONENTBUILDER_CONFIG_GIT_FOLDER_PATH_MESSAGE" class="alert alert-info note_git_folder_path" />
hint="COM_COMPONENTBUILDER_CONFIG_GIT_FOLDER_PATH_HINT" <!-- Git_folder_path Field. Type: Text. (joomla) -->
/> <field type="text"
name="git_folder_path"
label="COM_COMPONENTBUILDER_CONFIG_GIT_FOLDER_PATH_LABEL"
size="70"
maxlength="150"
description="COM_COMPONENTBUILDER_CONFIG_GIT_FOLDER_PATH_DESCRIPTION"
class="text_area"
readonly="false"
disabled="false"
required="false"
filter="PATH"
message="COM_COMPONENTBUILDER_CONFIG_GIT_FOLDER_PATH_MESSAGE"
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" maxlength="150"
maxlength="150" description="COM_COMPONENTBUILDER_CONFIG_EXPORT_COMPANY_DESCRIPTION"
description="COM_COMPONENTBUILDER_CONFIG_EXPORT_COMPANY_DESCRIPTION" class="text_area"
class="text_area" readonly="false"
readonly="false" disabled="false"
disabled="false" 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) -->
/> <field type="text"
<!-- Export_owner Field. Type: Text. (joomla) --> name="export_owner"
<field label="COM_COMPONENTBUILDER_CONFIG_EXPORT_OWNER_LABEL"
type="text" size="10"
name="export_owner" maxlength="120"
label="COM_COMPONENTBUILDER_CONFIG_EXPORT_OWNER_LABEL" description="COM_COMPONENTBUILDER_CONFIG_EXPORT_OWNER_DESCRIPTION"
size="10" class="text_area"
maxlength="120" readonly="false"
description="COM_COMPONENTBUILDER_CONFIG_EXPORT_OWNER_DESCRIPTION" disabled="false"
class="text_area" required="true"
readonly="false" filter="HTML"
disabled="false" message="COM_COMPONENTBUILDER_CONFIG_EXPORT_OWNER_MESSAGE"
required="true" hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_OWNER_HINT" />
filter="HTML" <!-- Export_email Field. Type: Text. (joomla) -->
message="COM_COMPONENTBUILDER_CONFIG_EXPORT_OWNER_MESSAGE" <field type="text"
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_OWNER_HINT" name="export_email"
/> label="COM_COMPONENTBUILDER_CONFIG_EXPORT_EMAIL_LABEL"
<!-- Export_email Field. Type: Text. (joomla) --> size="40"
<field maxlength="150"
type="text" description="COM_COMPONENTBUILDER_CONFIG_EXPORT_EMAIL_DESCRIPTION"
name="export_email" class="text_area"
label="COM_COMPONENTBUILDER_CONFIG_EXPORT_EMAIL_LABEL" required="true"
size="40" filter="STRING"
maxlength="150" validate="email"
description="COM_COMPONENTBUILDER_CONFIG_EXPORT_EMAIL_DESCRIPTION" message="COM_COMPONENTBUILDER_CONFIG_EXPORT_EMAIL_MESSAGE"
class="text_area" hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_EMAIL_HINT" />
required="true" <!-- Export_website Field. Type: Url. (joomla) -->
filter="STRING" <field type="url"
validate="email" name="export_website"
message="COM_COMPONENTBUILDER_CONFIG_EXPORT_EMAIL_MESSAGE" label="COM_COMPONENTBUILDER_CONFIG_EXPORT_WEBSITE_LABEL"
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_EMAIL_HINT" size="60"
/> maxlength="150"
<!-- Export_website Field. Type: Url. (joomla) --> description="COM_COMPONENTBUILDER_CONFIG_EXPORT_WEBSITE_DESCRIPTION"
<field class="text_area"
type="url" required="true"
name="export_website" filter="url"
label="COM_COMPONENTBUILDER_CONFIG_EXPORT_WEBSITE_LABEL" validated="url"
size="60" message="COM_COMPONENTBUILDER_CONFIG_EXPORT_WEBSITE_MESSAGE"
maxlength="150" hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_WEBSITE_HINT" />
description="COM_COMPONENTBUILDER_CONFIG_EXPORT_WEBSITE_DESCRIPTION" <!-- Export_license Field. Type: Textarea. (joomla) -->
class="text_area" <field type="textarea"
required="true" name="export_license"
filter="url" label="COM_COMPONENTBUILDER_CONFIG_EXPORT_LICENSE_LABEL"
validated="url" rows="7"
message="COM_COMPONENTBUILDER_CONFIG_EXPORT_WEBSITE_MESSAGE" cols="10"
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_WEBSITE_HINT" default="GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html"
/> description="COM_COMPONENTBUILDER_CONFIG_EXPORT_LICENSE_DESCRIPTION"
<!-- Export_license Field. Type: Textarea. (joomla) --> class="text_area span12"
<field filter="HTML"
type="textarea" hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_LICENSE_HINT"
name="export_license" required="true" />
label="COM_COMPONENTBUILDER_CONFIG_EXPORT_LICENSE_LABEL" <!-- Export_copyright Field. Type: Textarea. (joomla) -->
rows="7" <field type="textarea"
cols="10" name="export_copyright"
default="GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html" label="COM_COMPONENTBUILDER_CONFIG_EXPORT_COPYRIGHT_LABEL"
description="COM_COMPONENTBUILDER_CONFIG_EXPORT_LICENSE_DESCRIPTION" rows="7"
class="text_area span12" cols="10"
filter="HTML" default="Copyright (C) 2015. All Rights Reserved"
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_LICENSE_HINT" description="COM_COMPONENTBUILDER_CONFIG_EXPORT_COPYRIGHT_DESCRIPTION"
required="true" class="text_area span12"
/> filter="HTML"
<!-- Export_copyright Field. Type: Textarea. (joomla) --> hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_COPYRIGHT_HINT"
<field required="true" />
type="textarea" <!-- Export_buy_link Field. Type: Url. (joomla) -->
name="export_copyright" <field type="url"
label="COM_COMPONENTBUILDER_CONFIG_EXPORT_COPYRIGHT_LABEL" name="export_buy_link"
rows="7" label="COM_COMPONENTBUILDER_CONFIG_EXPORT_BUY_LINK_LABEL"
cols="10" size="60"
default="Copyright (C) 2015. All Rights Reserved" maxlength="150"
description="COM_COMPONENTBUILDER_CONFIG_EXPORT_COPYRIGHT_DESCRIPTION" description="COM_COMPONENTBUILDER_CONFIG_EXPORT_BUY_LINK_DESCRIPTION"
class="text_area span12" class="text_area"
filter="HTML" required="false"
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_COPYRIGHT_HINT" filter="url"
required="true" validated="url"
/> message="COM_COMPONENTBUILDER_CONFIG_EXPORT_BUY_LINK_MESSAGE"
<!-- Export_buy_link Field. Type: Url. (joomla) --> hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_BUY_LINK_HINT" />
<field
type="url"
name="export_buy_link"
label="COM_COMPONENTBUILDER_CONFIG_EXPORT_BUY_LINK_LABEL"
size="60"
maxlength="150"
description="COM_COMPONENTBUILDER_CONFIG_EXPORT_BUY_LINK_DESCRIPTION"
class="text_area"
required="false"
filter="url"
validated="url"
message="COM_COMPONENTBUILDER_CONFIG_EXPORT_BUY_LINK_MESSAGE"
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_BUY_LINK_HINT"
/>
</fieldset> </fieldset>
<fieldset <fieldset
name="permissions" name="permissions"

View File

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