Resolved gh-169 to insure the addrulepath is also added to the default.xml file of site views. Improved the field types a little with adding the validation and message property to various field types.

This commit is contained in:
Llewellyn van der Merwe 2017-11-08 15:49:15 +02:00
parent 5aabfa9cd6
commit 4eac7d54f0
No known key found for this signature in database
GPG Key ID: CAD7B16D27AF28C5
29 changed files with 361 additions and 215 deletions

View File

@ -111,11 +111,11 @@ Component Builder is mapped as a component in itself on my local development env
+ *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io)
+ *Name*: [Component Builder](http://vdm.bz/component-builder)
+ *First Build*: 30th April, 2015
+ *Last Build*: 6th November, 2017
+ *Last Build*: 8th November, 2017
+ *Version*: 2.6.3
+ *Copyright*: Copyright (C) 2015. All Rights Reserved
+ *License*: GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
+ *Line count*: **159529**
+ *Line count*: **159673**
+ *File count*: **1002**
+ *Folder count*: **165**

View File

@ -111,11 +111,11 @@ Component Builder is mapped as a component in itself on my local development env
+ *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io)
+ *Name*: [Component Builder](http://vdm.bz/component-builder)
+ *First Build*: 30th April, 2015
+ *Last Build*: 6th November, 2017
+ *Last Build*: 8th November, 2017
+ *Version*: 2.6.3
+ *Copyright*: Copyright (C) 2015. All Rights Reserved
+ *License*: GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
+ *Line count*: **159529**
+ *Line count*: **159673**
+ *File count*: **1002**
+ *Folder count*: **165**

View File

@ -521,7 +521,7 @@
disabled="false"
required="false"
filter="PATH"
message="Error! Please add some text here."
message="COM_COMPONENTBUILDER_CONFIG_CRONJOB_BACKUP_FOLDER_PATH_MESSAGE"
hint="COM_COMPONENTBUILDER_CONFIG_CRONJOB_BACKUP_FOLDER_PATH_HINT"
/>
<!-- Backup_email Field. Type: Text. (joomla) -->
@ -535,7 +535,7 @@
class="text_area"
filter="STRING"
validate="email"
message="Error! Please add email address here."
message="COM_COMPONENTBUILDER_CONFIG_BACKUP_EMAIL_MESSAGE"
hint="COM_COMPONENTBUILDER_CONFIG_BACKUP_EMAIL_HINT"
/>
<!-- Package_name_plaeholders Field. Type: Note. A None Database Field. (joomla) -->
@ -554,7 +554,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add name here."
message="COM_COMPONENTBUILDER_CONFIG_BACKUP_PACKAGE_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_CONFIG_BACKUP_PACKAGE_NAME_HINT"
/>
</fieldset>
@ -577,7 +577,7 @@
disabled="false"
required="false"
filter="PATH"
message="Error! Please add some text here."
message="COM_COMPONENTBUILDER_CONFIG_COMPILER_FOLDER_PATH_MESSAGE"
hint="COM_COMPONENTBUILDER_CONFIG_COMPILER_FOLDER_PATH_HINT"
/>
<!-- Note_custom_folder_path Field. Type: Note. A None Database Field. (joomla) -->
@ -595,7 +595,7 @@
disabled="false"
required="false"
filter="PATH"
message="Error! Please add folder path here."
message="COM_COMPONENTBUILDER_CONFIG_CUSTOM_FOLDER_PATH_MESSAGE"
hint="COM_COMPONENTBUILDER_CONFIG_CUSTOM_FOLDER_PATH_HINT"
/>
<!-- Note_backup_folder_path Field. Type: Note. A None Database Field. (joomla) -->
@ -613,7 +613,7 @@
disabled="false"
required="false"
filter="PATH"
message="Error! Please add folder path here."
message="COM_COMPONENTBUILDER_CONFIG_BACKUP_FOLDER_PATH_MESSAGE"
hint="COM_COMPONENTBUILDER_CONFIG_BACKUP_FOLDER_PATH_HINT"
/>
<!-- Note_git_folder_path Field. Type: Note. A None Database Field. (joomla) -->
@ -631,7 +631,7 @@
disabled="false"
required="false"
filter="PATH"
message="Error! Please add folder path here."
message="COM_COMPONENTBUILDER_CONFIG_GIT_FOLDER_PATH_MESSAGE"
hint="COM_COMPONENTBUILDER_CONFIG_GIT_FOLDER_PATH_HINT"
/>
</fieldset>
@ -652,7 +652,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add company name here."
message="COM_COMPONENTBUILDER_CONFIG_EXPORT_COMPANY_MESSAGE"
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_COMPANY_HINT"
/>
<!-- Export_owner Field. Type: Text. (joomla) -->
@ -668,7 +668,7 @@
disabled="false"
required="true"
filter="HTML"
message="Error! Please add owner name here."
message="COM_COMPONENTBUILDER_CONFIG_EXPORT_OWNER_MESSAGE"
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_OWNER_HINT"
/>
<!-- Export_email Field. Type: Text. (joomla) -->
@ -683,7 +683,7 @@
required="true"
filter="STRING"
validate="email"
message="Error! Please email address here."
message="COM_COMPONENTBUILDER_CONFIG_EXPORT_EMAIL_MESSAGE"
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_EMAIL_HINT"
/>
<!-- Export_website Field. Type: Url. (joomla) -->
@ -698,7 +698,7 @@
required="true"
filter="url"
validated="url"
message="Error! Please add website here."
message="COM_COMPONENTBUILDER_CONFIG_EXPORT_WEBSITE_MESSAGE"
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_WEBSITE_HINT"
/>
<!-- Export_license Field. Type: Textarea. (joomla) -->
@ -741,7 +741,7 @@
required="false"
filter="url"
validated="url"
message="Error! Please add link here."
message="COM_COMPONENTBUILDER_CONFIG_EXPORT_BUY_LINK_MESSAGE"
hint="COM_COMPONENTBUILDER_CONFIG_EXPORT_BUY_LINK_HINT"
/>
</fieldset>

View File

@ -1345,10 +1345,10 @@ class Interpretation extends Fields
$xml .= PHP_EOL."\t".'</layout>';
if (isset($this->hasIdRequest[$view['settings']->code]) || isset($this->hasCatIdRequest[$view['settings']->code]))
{
$xml .= PHP_EOL."\t".'<!--'.$this->setLine(__LINE__).' Add fields to the request variables for the layout. -->';
$xml .= PHP_EOL."\t".'<fields name="request">';
$xml .= PHP_EOL."\t\t".'<fieldset name="request"';
$xml .= PHP_EOL."\t\t\t".'addrulepath="/administrator/components/com_'.$this->fileContentStatic['###component###'].'/models/rules"';
$xml .= PHP_EOL."\t\t\t".'addfieldpath="/administrator/components/com_'.$this->fileContentStatic['###component###'].'/models/fields">';
if (isset($this->hasIdRequest[$view['settings']->code]) && ComponentbuilderHelper::checkArray($this->hasIdRequest[$view['settings']->code]))
{
@ -1376,7 +1376,9 @@ class Interpretation extends Fields
{
$xml .= PHP_EOL."\t".'<!--'.$this->setLine(__LINE__).' Adding page parameters -->';
$xml .= PHP_EOL."\t".'<fields name="params">';
$xml .= PHP_EOL."\t\t".'<fieldset name="basic" label="COM_'.$this->fileContentStatic['###COMPONENT###'].'">';
$xml .= PHP_EOL."\t\t".'<fieldset name="basic" label="COM_'.$this->fileContentStatic['###COMPONENT###'].'"';
$xml .= PHP_EOL."\t\t\t".'addrulepath="/administrator/components/com_'.$this->fileContentStatic['###component###'].'/models/rules"';
$xml .= PHP_EOL."\t\t\t".'addfieldpath="/administrator/components/com_'.$this->fileContentStatic['###component###'].'/models/fields">';
$xml .= implode("\t\t\t",$params);
$xml .= PHP_EOL."\t\t".'</fieldset>';
$xml .= PHP_EOL."\t".'</fields>';

View File

@ -307,7 +307,7 @@ abstract class ComponentbuilderHelper
// load this for all
jimport('joomla.application');
}
/**
* Remove folders with files
*
@ -373,7 +373,7 @@ abstract class ComponentbuilderHelper
}
return false;
}
/**
* The dynamic builder of views, tables and fields
**/
@ -382,10 +382,16 @@ abstract class ComponentbuilderHelper
self::autoLoader('extrusion');
$extruder = new Extrusion($data);
}
/**
* The zipper method
**/
* The zipper method
*
* @param string $workingDIR The directory where the items must be zipped
* @param string $filepath The path to where the zip file must be placed
*
* @return bool true On success
*
*/
public static function zip($workingDIR, &$filepath)
{
// store the current joomla working directory
@ -426,30 +432,40 @@ abstract class ComponentbuilderHelper
}
return false;
}
/**
* Create file and write data to the file
**/
* Write a file to the server
*
* @param string $path The path and file name where to safe the data
* @param string $data The data to safe
*
* @return bool true On success
*
*/
public static function writeFile($path, $data)
{
$klaar = false;
// open the file
$fh = fopen($path, "w");
if (!is_resource($fh))
if (self::checkString($data))
{
return $klaar;
// open the file
$fh = fopen($path, "w");
if (!is_resource($fh))
{
return $klaar;
}
// write to the file
if (fwrite($fh, $data))
{
// has been done
$klaar = true;
}
// close file.
fclose($fh);
}
// write to the file
if (fwrite($fh, $data))
{
// has been done
$klaar = true;
}
// close file.
fclose($fh);
return $klaar;
}
public static function getFieldOptions($value, $type, $settings = array())
{
// Get a db connection.
@ -1370,8 +1386,7 @@ abstract class ComponentbuilderHelper
}
return self::$localSession[$key];
}
/**
* check if it is a new hash
**/
@ -1399,12 +1414,12 @@ abstract class ComponentbuilderHelper
/**
* Get the file path or url
*
* @param string $type The (url/path) type to return
* @param string $target The Params Target name (if set)
* @param string $fileType The kind of filename to generate (if not set no file name is generated)
* @param string $key The key to adjust the filename (if not set ignored)
* @param string $default The default path if not set in Params (fallback path)
* @param bool $createIfNotSet The switch to create the folder if not found
* @param string $type The (url/path) type to return
* @param string $target The Params Target name (if set)
* @param string $fileType The kind of filename to generate (if not set no file name is generated)
* @param string $key The key to adjust the filename (if not set ignored)
* @param string $default The default path if not set in Params (fallback path)
* @param bool $createIfNotSet The switch to create the folder if not found
*
* @return string On success the path or url is returned based on the type requested
*
@ -1420,7 +1435,7 @@ abstract class ComponentbuilderHelper
// check the file path (revert to default only of not a hidden file path)
if ('hiddenfilepath' !== $target && strpos($filePath, JPATH_SITE) === false)
{
$filePath = JPATH_SITE . '/images/';
$filePath = $default;
}
jimport('joomla.filesystem.folder');
// create the folder if it does not exist
@ -1430,24 +1445,29 @@ abstract class ComponentbuilderHelper
}
// setup the file name
$fileName = '';
// Get basic key
$basickey = 'Th!s_iS_n0t_sAfe_buT_b3tter_then_n0thiug';
if (method_exists(get_called_class(), "getCryptKey"))
{
$basickey = self::getCryptKey('basic', $basickey);
}
// check the key
if (!self::checkString($key))
{
$key = 'vDm';
}
// set the file name
if (self::checkString($fileType))
{
// Get basic key
$basickey = 'Th!s_iS_n0t_sAfe_buT_b3tter_then_n0thiug';
if (method_exists(get_called_class(), "getCryptKey"))
{
$basickey = self::getCryptKey('basic', $basickey);
}
// check the key
if (self::checkString($key))
{
$key = 'vDm';
}
// set the name
$fileName = trim(md5($type.$target.$basickey.$key) . '.' . trim($fileType, '.'));
}
else
{
$fileName = trim(md5($type.$target.$basickey.$key)) . '.txt';
}
// return the url
if ($type === 'url')
if ('url' === $type)
{
if (strpos($filePath, JPATH_SITE) !== false)
{
@ -1459,7 +1479,8 @@ abstract class ComponentbuilderHelper
}
// sanitize the path
return '/' . trim( $filePath, '/' ) . '/' . $fileName;
}
}
/**
* Load the Component xml manifest.
**/

View File

@ -507,6 +507,7 @@ COM_COMPONENTBUILDER_ADMIN_VIEW_INFO_CIRCLE="Info Circle"
COM_COMPONENTBUILDER_ADMIN_VIEW_INPUT_DEFAULT_DESCRIPTION="Enter default input value"
COM_COMPONENTBUILDER_ADMIN_VIEW_INPUT_DEFAULT_HINT="Default Value Here"
COM_COMPONENTBUILDER_ADMIN_VIEW_INPUT_DEFAULT_LABEL="Default"
COM_COMPONENTBUILDER_ADMIN_VIEW_INPUT_DEFAULT_MESSAGE="Error! Please add default input value here."
COM_COMPONENTBUILDER_ADMIN_VIEW_INPUT_FILTER_DESCRIPTION="Select the filter used to sanitized the input value."
COM_COMPONENTBUILDER_ADMIN_VIEW_INPUT_FILTER_LABEL="Select a Filter"
COM_COMPONENTBUILDER_ADMIN_VIEW_INT="INT"
@ -534,6 +535,7 @@ COM_COMPONENTBUILDER_ADMIN_VIEW_KEY="Key"
COM_COMPONENTBUILDER_ADMIN_VIEW_KEY_DESCRIPTION="The key to use to link the child view."
COM_COMPONENTBUILDER_ADMIN_VIEW_KEY_HINT="country"
COM_COMPONENTBUILDER_ADMIN_VIEW_KEY_LABEL="Child Key"
COM_COMPONENTBUILDER_ADMIN_VIEW_KEY_MESSAGE="Error! Please add key here."
COM_COMPONENTBUILDER_ADMIN_VIEW_LAMP="Lamp"
COM_COMPONENTBUILDER_ADMIN_VIEW_LAST="Last"
COM_COMPONENTBUILDER_ADMIN_VIEW_LINK="Link"
@ -548,9 +550,11 @@ COM_COMPONENTBUILDER_ADMIN_VIEW_MENU_TWO="Menu 2"
COM_COMPONENTBUILDER_ADMIN_VIEW_METHOD_DESCRIPTION="Add Controller Method Name Here"
COM_COMPONENTBUILDER_ADMIN_VIEW_METHOD_HINT="methodName"
COM_COMPONENTBUILDER_ADMIN_VIEW_METHOD_LABEL="Target Controller Method"
COM_COMPONENTBUILDER_ADMIN_VIEW_METHOD_MESSAGE="Error! Please add controller method name here."
COM_COMPONENTBUILDER_ADMIN_VIEW_METHOD_NAME_DESCRIPTION="Enter method name."
COM_COMPONENTBUILDER_ADMIN_VIEW_METHOD_NAME_HINT="Method Name Here"
COM_COMPONENTBUILDER_ADMIN_VIEW_METHOD_NAME_LABEL="Method Name"
COM_COMPONENTBUILDER_ADMIN_VIEW_METHOD_NAME_MESSAGE="Error! Please add method name here."
COM_COMPONENTBUILDER_ADMIN_VIEW_MINUS="Minus"
COM_COMPONENTBUILDER_ADMIN_VIEW_MINUS_SIGN="Minus Sign"
COM_COMPONENTBUILDER_ADMIN_VIEW_MOBILE="Mobile"
@ -568,10 +572,13 @@ COM_COMPONENTBUILDER_ADMIN_VIEW_NAME_LIST="Name List"
COM_COMPONENTBUILDER_ADMIN_VIEW_NAME_LIST_DESCRIPTION="The name of the list of records in this view"
COM_COMPONENTBUILDER_ADMIN_VIEW_NAME_LIST_HINT="List of Records Name Here"
COM_COMPONENTBUILDER_ADMIN_VIEW_NAME_LIST_LABEL="Name (list of records)"
COM_COMPONENTBUILDER_ADMIN_VIEW_NAME_LIST_MESSAGE="Error! Please add list of records name here."
COM_COMPONENTBUILDER_ADMIN_VIEW_NAME_MESSAGE="Error! Please add name here."
COM_COMPONENTBUILDER_ADMIN_VIEW_NAME_SINGLE="Name Single"
COM_COMPONENTBUILDER_ADMIN_VIEW_NAME_SINGLE_DESCRIPTION="Type null if single record view is not to be set"
COM_COMPONENTBUILDER_ADMIN_VIEW_NAME_SINGLE_HINT="Single Record Name Here"
COM_COMPONENTBUILDER_ADMIN_VIEW_NAME_SINGLE_LABEL="Name (single record)"
COM_COMPONENTBUILDER_ADMIN_VIEW_NAME_SINGLE_MESSAGE="Error! Please add single record name here."
COM_COMPONENTBUILDER_ADMIN_VIEW_NEW="A New Admin View"
COM_COMPONENTBUILDER_ADMIN_VIEW_NEW_TAB="New Tab"
COM_COMPONENTBUILDER_ADMIN_VIEW_NEW_TAB_TWO="New Tab 2"
@ -604,6 +611,7 @@ COM_COMPONENTBUILDER_ADMIN_VIEW_PARAGRAPH_RIGHT="Paragraph Right"
COM_COMPONENTBUILDER_ADMIN_VIEW_PARENTKEY_DESCRIPTION="The key to use to link the parent view."
COM_COMPONENTBUILDER_ADMIN_VIEW_PARENTKEY_HINT="id"
COM_COMPONENTBUILDER_ADMIN_VIEW_PARENTKEY_LABEL="Parent Key"
COM_COMPONENTBUILDER_ADMIN_VIEW_PARENTKEY_MESSAGE="Error! Please add key here."
COM_COMPONENTBUILDER_ADMIN_VIEW_PATH="PATH"
COM_COMPONENTBUILDER_ADMIN_VIEW_PAUSE="Pause"
COM_COMPONENTBUILDER_ADMIN_VIEW_PAUSE_CIRCLE="Pause Circle"
@ -752,6 +760,7 @@ COM_COMPONENTBUILDER_ADMIN_VIEW_SHORT_DESCRIPTION="Short Description"
COM_COMPONENTBUILDER_ADMIN_VIEW_SHORT_DESCRIPTION_DESCRIPTION="Enter short description"
COM_COMPONENTBUILDER_ADMIN_VIEW_SHORT_DESCRIPTION_HINT="Your Short Description Here"
COM_COMPONENTBUILDER_ADMIN_VIEW_SHORT_DESCRIPTION_LABEL="Short Description"
COM_COMPONENTBUILDER_ADMIN_VIEW_SHORT_DESCRIPTION_MESSAGE="Error! Please add some short description here."
COM_COMPONENTBUILDER_ADMIN_VIEW_SHUFFLE="Shuffle"
COM_COMPONENTBUILDER_ADMIN_VIEW_SIGNUP="Signup"
COM_COMPONENTBUILDER_ADMIN_VIEW_SINGLE="Single"
@ -783,6 +792,7 @@ COM_COMPONENTBUILDER_ADMIN_VIEW_SYSTEM_NAME="System Name"
COM_COMPONENTBUILDER_ADMIN_VIEW_SYSTEM_NAME_DESCRIPTION="Used only in the system."
COM_COMPONENTBUILDER_ADMIN_VIEW_SYSTEM_NAME_HINT="The System Name Here"
COM_COMPONENTBUILDER_ADMIN_VIEW_SYSTEM_NAME_LABEL="System Name"
COM_COMPONENTBUILDER_ADMIN_VIEW_SYSTEM_NAME_MESSAGE="Error! Please add some text here."
COM_COMPONENTBUILDER_ADMIN_VIEW_TABLE="Table"
COM_COMPONENTBUILDER_ADMIN_VIEW_TABLET="Tablet"
COM_COMPONENTBUILDER_ADMIN_VIEW_TABLE_LABEL="Select a Table"
@ -797,6 +807,7 @@ COM_COMPONENTBUILDER_ADMIN_VIEW_TARGET_LABEL="Target"
COM_COMPONENTBUILDER_ADMIN_VIEW_TASK_NAME_DESCRIPTION="Enter Task Name Here"
COM_COMPONENTBUILDER_ADMIN_VIEW_TASK_NAME_HINT="Task Name Here"
COM_COMPONENTBUILDER_ADMIN_VIEW_TASK_NAME_LABEL="Task Name"
COM_COMPONENTBUILDER_ADMIN_VIEW_TASK_NAME_MESSAGE="Error! Please add task name here."
COM_COMPONENTBUILDER_ADMIN_VIEW_THUMBS_DOWN="Thumbs Down"
COM_COMPONENTBUILDER_ADMIN_VIEW_THUMBS_UP="Thumbs Up"
COM_COMPONENTBUILDER_ADMIN_VIEW_TREE="Tree"
@ -822,6 +833,7 @@ COM_COMPONENTBUILDER_ADMIN_VIEW_USER_CHECK_LABEL="User Check"
COM_COMPONENTBUILDER_ADMIN_VIEW_VALUE_NAME_DESCRIPTION="Enter Value Name Here"
COM_COMPONENTBUILDER_ADMIN_VIEW_VALUE_NAME_HINT="Value Name Here"
COM_COMPONENTBUILDER_ADMIN_VIEW_VALUE_NAME_LABEL="Value Name"
COM_COMPONENTBUILDER_ADMIN_VIEW_VALUE_NAME_MESSAGE="Error! Please add value name here."
COM_COMPONENTBUILDER_ADMIN_VIEW_VCARD="Vcard"
COM_COMPONENTBUILDER_ADMIN_VIEW_VERSION_DESC="A count of the number of times this Admin View has been revised."
COM_COMPONENTBUILDER_ADMIN_VIEW_VERSION_LABEL="Revision"
@ -1550,6 +1562,7 @@ COM_COMPONENTBUILDER_COMPONENT_CONFIG_STATUS="Status"
COM_COMPONENTBUILDER_COMPONENT_CONFIG_TABNAME_DESCRIPTION="The name of the tab this field belongs to."
COM_COMPONENTBUILDER_COMPONENT_CONFIG_TABNAME_HINT="Global"
COM_COMPONENTBUILDER_COMPONENT_CONFIG_TABNAME_LABEL="Tab Name"
COM_COMPONENTBUILDER_COMPONENT_CONFIG_TABNAME_MESSAGE="Error! Please add tab name here."
COM_COMPONENTBUILDER_COMPONENT_CONFIG_TWEAKS="Tweaks"
COM_COMPONENTBUILDER_COMPONENT_CONFIG_VERSION_DESC="A count of the number of times this Component Config has been revised."
COM_COMPONENTBUILDER_COMPONENT_CONFIG_VERSION_LABEL="Revision"
@ -1576,6 +1589,7 @@ COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_JOOMLA_COMPONENT_LABEL="Compon
COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_LINK_DESCRIPTION="Enter menu link"
COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_LINK_HINT="Menu Link Here"
COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_LINK_LABEL="Link"
COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_LINK_MESSAGE="Error! Please add menu link."
COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_MAINMENU_DESCRIPTION="Select if the view should show in the main menu."
COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_MAINMENU_LABEL="Main Menu"
COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_MODIFIED_BY_DESC="The last user that modified this Component Custom Admin Menus."
@ -1585,9 +1599,11 @@ COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_MODIFIED_DATE_LABEL="Modified
COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_NAME_CODE_DESCRIPTION="Add Name in Code Here"
COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_NAME_CODE_HINT="codename"
COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_NAME_CODE_LABEL="Name in Code"
COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_NAME_CODE_MESSAGE="Error! Please add name in code here."
COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_NAME_DESCRIPTION="Enter Name Here"
COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_NAME_HINT="Name Here"
COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_NAME_LABEL="Name"
COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_NAME_MESSAGE="Error! Please add name here."
COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_NEW="A New Component Custom Admin Menus"
COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_ORDERING_LABEL="Ordering"
COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_PERMISSION="Permissions"
@ -1871,6 +1887,7 @@ COM_COMPONENTBUILDER_COMPONENT_DASHBOARD_ERROR_UNIQUE_ALIAS="Another Component D
COM_COMPONENTBUILDER_COMPONENT_DASHBOARD_HEADER_DESCRIPTION="Enter Header Here"
COM_COMPONENTBUILDER_COMPONENT_DASHBOARD_HEADER_HINT="Header Here"
COM_COMPONENTBUILDER_COMPONENT_DASHBOARD_HEADER_LABEL="Header"
COM_COMPONENTBUILDER_COMPONENT_DASHBOARD_HEADER_MESSAGE="Error! Please add header here."
COM_COMPONENTBUILDER_COMPONENT_DASHBOARD_HTML_HINT="// Add the tab HTML here. To access php values <?php echo $this->methodname->value; ?>"
COM_COMPONENTBUILDER_COMPONENT_DASHBOARD_HTML_LABEL="HTML"
COM_COMPONENTBUILDER_COMPONENT_DASHBOARD_ID="Id"
@ -1884,6 +1901,7 @@ COM_COMPONENTBUILDER_COMPONENT_DASHBOARD_MODIFIED_DATE_LABEL="Modified Date"
COM_COMPONENTBUILDER_COMPONENT_DASHBOARD_NAME_DESCRIPTION="Enter Name Here"
COM_COMPONENTBUILDER_COMPONENT_DASHBOARD_NAME_HINT="Name Here"
COM_COMPONENTBUILDER_COMPONENT_DASHBOARD_NAME_LABEL="Name"
COM_COMPONENTBUILDER_COMPONENT_DASHBOARD_NAME_MESSAGE="Error! Please add name here."
COM_COMPONENTBUILDER_COMPONENT_DASHBOARD_NEW="A New Component Dashboard"
COM_COMPONENTBUILDER_COMPONENT_DASHBOARD_ORDERING_LABEL="Ordering"
COM_COMPONENTBUILDER_COMPONENT_DASHBOARD_PERMISSION="Permissions"
@ -1934,6 +1952,7 @@ COM_COMPONENTBUILDER_COMPONENT_FILES_FOLDERS_ORDERING_LABEL="Ordering"
COM_COMPONENTBUILDER_COMPONENT_FILES_FOLDERS_PATH_DESCRIPTION="Path in relation to the folder structure in the install package, unzip the compiled file to see the structure. "
COM_COMPONENTBUILDER_COMPONENT_FILES_FOLDERS_PATH_HINT="Target Path Here"
COM_COMPONENTBUILDER_COMPONENT_FILES_FOLDERS_PATH_LABEL="Target Path"
COM_COMPONENTBUILDER_COMPONENT_FILES_FOLDERS_PATH_MESSAGE="Error! Please add target path."
COM_COMPONENTBUILDER_COMPONENT_FILES_FOLDERS_PERMISSION="Permissions"
COM_COMPONENTBUILDER_COMPONENT_FILES_FOLDERS_PUBLISHING="Publishing"
COM_COMPONENTBUILDER_COMPONENT_FILES_FOLDERS_RENAME_LABEL="Rename"
@ -2055,10 +2074,12 @@ COM_COMPONENTBUILDER_COMPONENT_UPDATES_UPDATES="Updates"
COM_COMPONENTBUILDER_COMPONENT_UPDATES_URL_DESCRIPTION="Enter Download Link"
COM_COMPONENTBUILDER_COMPONENT_UPDATES_URL_HINT="http://www.example.com/file.zip"
COM_COMPONENTBUILDER_COMPONENT_UPDATES_URL_LABEL="Version URL"
COM_COMPONENTBUILDER_COMPONENT_UPDATES_URL_MESSAGE="Error! Please add url here."
COM_COMPONENTBUILDER_COMPONENT_UPDATES_VERSION_DESC="A count of the number of times this Component Updates has been revised."
COM_COMPONENTBUILDER_COMPONENT_UPDATES_VERSION_DESCRIPTION="1.0.0"
COM_COMPONENTBUILDER_COMPONENT_UPDATES_VERSION_HINT="1.0.0"
COM_COMPONENTBUILDER_COMPONENT_UPDATES_VERSION_LABEL="SQL Update Version"
COM_COMPONENTBUILDER_COMPONENT_UPDATES_VERSION_MESSAGE="Error! Please add some text here."
COM_COMPONENTBUILDER_COMPONENT_UPDATES_VERSION_UPDATE="Version Update"
COM_COMPONENTBUILDER_COMPONENT_UPDATES_VERSION_UPDATE_DESCRIPTION="Add Version Updates Here!"
COM_COMPONENTBUILDER_COMPONENT_UPDATES_VERSION_UPDATE_LABEL="Version Updates"
@ -2127,12 +2148,15 @@ COM_COMPONENTBUILDER_CONFIG_BACKUPCRONJOB_NOTE_LABEL="Backup JCB Mapped Componen
COM_COMPONENTBUILDER_CONFIG_BACKUP_EMAIL_DESCRIPTION="Enter the email where the <b>backup key</b> should be send. It will only send an email if a key change is detected, and not on every backup."
COM_COMPONENTBUILDER_CONFIG_BACKUP_EMAIL_HINT="Email Address Here"
COM_COMPONENTBUILDER_CONFIG_BACKUP_EMAIL_LABEL="Email (backup key)"
COM_COMPONENTBUILDER_CONFIG_BACKUP_EMAIL_MESSAGE="Error! Please add email address here."
COM_COMPONENTBUILDER_CONFIG_BACKUP_FOLDER_PATH_DESCRIPTION="Here you can set the path to the backup folder."
COM_COMPONENTBUILDER_CONFIG_BACKUP_FOLDER_PATH_HINT="/home/user/backup"
COM_COMPONENTBUILDER_CONFIG_BACKUP_FOLDER_PATH_LABEL="Backup Folder Path"
COM_COMPONENTBUILDER_CONFIG_BACKUP_FOLDER_PATH_MESSAGE="Error! Please add folder path here."
COM_COMPONENTBUILDER_CONFIG_BACKUP_PACKAGE_NAME_DESCRIPTION="Enter Package Name Here"
COM_COMPONENTBUILDER_CONFIG_BACKUP_PACKAGE_NAME_HINT="JCB_Backup_[YEAR]_[MONTH]_[DAY]"
COM_COMPONENTBUILDER_CONFIG_BACKUP_PACKAGE_NAME_LABEL="Package Name"
COM_COMPONENTBUILDER_CONFIG_BACKUP_PACKAGE_NAME_MESSAGE="Error! Please add name here."
COM_COMPONENTBUILDER_CONFIG_BASIC_KEY_DESC="Set the basic local key here."
COM_COMPONENTBUILDER_CONFIG_BASIC_KEY_LABEL="Basic Key <small>(basic encryption)</small>"
COM_COMPONENTBUILDER_CONFIG_BASIC_KEY_NOTE_DESC="When using the basic encryption please use a 32 character passphrase.<br />Never change this passphrase once it is set! <b>DATA WILL GET CORRUPTED IF YOU DO!</b>"
@ -2149,13 +2173,16 @@ COM_COMPONENTBUILDER_CONFIG_COMPANY="Company"
COM_COMPONENTBUILDER_CONFIG_COMPILER_FOLDER_PATH_DESCRIPTION="Here you can set the path to the compiler folder"
COM_COMPONENTBUILDER_CONFIG_COMPILER_FOLDER_PATH_HINT="/home/user/compiler"
COM_COMPONENTBUILDER_CONFIG_COMPILER_FOLDER_PATH_LABEL="Compiler Folder Path"
COM_COMPONENTBUILDER_CONFIG_COMPILER_FOLDER_PATH_MESSAGE="Error! Please add some text here."
COM_COMPONENTBUILDER_CONFIG_CRONJOB="CronJob"
COM_COMPONENTBUILDER_CONFIG_CRONJOB_BACKUP_FOLDER_PATH_DESCRIPTION="Here you can set the path to where all components are backed up to."
COM_COMPONENTBUILDER_CONFIG_CRONJOB_BACKUP_FOLDER_PATH_HINT="/home/user/fullbackup"
COM_COMPONENTBUILDER_CONFIG_CRONJOB_BACKUP_FOLDER_PATH_LABEL="Cronjob Backup Folder Path"
COM_COMPONENTBUILDER_CONFIG_CRONJOB_BACKUP_FOLDER_PATH_MESSAGE="Error! Please add some text here."
COM_COMPONENTBUILDER_CONFIG_CUSTOM_FOLDER_PATH_DESCRIPTION="Here you can set the path to the custom folder"
COM_COMPONENTBUILDER_CONFIG_CUSTOM_FOLDER_PATH_HINT="/home/user/custom"
COM_COMPONENTBUILDER_CONFIG_CUSTOM_FOLDER_PATH_LABEL="Custom Folder Path"
COM_COMPONENTBUILDER_CONFIG_CUSTOM_FOLDER_PATH_MESSAGE="Error! Please add folder path here."
COM_COMPONENTBUILDER_CONFIG_DKIM="DKIM"
COM_COMPONENTBUILDER_CONFIG_DKIM_DESCRIPTION="Set this option to Yes if you want to sign your emails using DKIM."
COM_COMPONENTBUILDER_CONFIG_DKIM_DOMAIN_DESCRIPTION="Set the domain. Eg. domain.com"
@ -2192,24 +2219,29 @@ COM_COMPONENTBUILDER_CONFIG_ENCRYPTION_LABEL="Encryption Settings"
COM_COMPONENTBUILDER_CONFIG_EXPORT_BUY_LINK_DESCRIPTION="Enter link where your JCB package key can be bought."
COM_COMPONENTBUILDER_CONFIG_EXPORT_BUY_LINK_HINT="http://www.example.com/buy-keys"
COM_COMPONENTBUILDER_CONFIG_EXPORT_BUY_LINK_LABEL="Buy Link<br /><small>(to get key)</small>"
COM_COMPONENTBUILDER_CONFIG_EXPORT_BUY_LINK_MESSAGE="Error! Please add link here."
COM_COMPONENTBUILDER_CONFIG_EXPORT_COMPANY_DESCRIPTION="Enter Company Name Here"
COM_COMPONENTBUILDER_CONFIG_EXPORT_COMPANY_HINT="Company Name Here"
COM_COMPONENTBUILDER_CONFIG_EXPORT_COMPANY_LABEL="Company Name"
COM_COMPONENTBUILDER_CONFIG_EXPORT_COMPANY_MESSAGE="Error! Please add company name here."
COM_COMPONENTBUILDER_CONFIG_EXPORT_COPYRIGHT_DESCRIPTION="Add Copyright Here"
COM_COMPONENTBUILDER_CONFIG_EXPORT_COPYRIGHT_HINT="Add Copyright Here"
COM_COMPONENTBUILDER_CONFIG_EXPORT_COPYRIGHT_LABEL="Copyright"
COM_COMPONENTBUILDER_CONFIG_EXPORT_EMAIL_DESCRIPTION="Enter Email"
COM_COMPONENTBUILDER_CONFIG_EXPORT_EMAIL_HINT="Email Here"
COM_COMPONENTBUILDER_CONFIG_EXPORT_EMAIL_LABEL="Email"
COM_COMPONENTBUILDER_CONFIG_EXPORT_EMAIL_MESSAGE="Error! Please email address here."
COM_COMPONENTBUILDER_CONFIG_EXPORT_LICENSE_DESCRIPTION="Add License Here"
COM_COMPONENTBUILDER_CONFIG_EXPORT_LICENSE_HINT="Add License Here"
COM_COMPONENTBUILDER_CONFIG_EXPORT_LICENSE_LABEL="License"
COM_COMPONENTBUILDER_CONFIG_EXPORT_OWNER_DESCRIPTION="The Owner's Name &amp; Surname."
COM_COMPONENTBUILDER_CONFIG_EXPORT_OWNER_HINT="Owner Name &amp; Surname Here"
COM_COMPONENTBUILDER_CONFIG_EXPORT_OWNER_LABEL="Owner"
COM_COMPONENTBUILDER_CONFIG_EXPORT_OWNER_MESSAGE="Error! Please add owner name here."
COM_COMPONENTBUILDER_CONFIG_EXPORT_WEBSITE_DESCRIPTION="Enter website address"
COM_COMPONENTBUILDER_CONFIG_EXPORT_WEBSITE_HINT="http://www.example.com"
COM_COMPONENTBUILDER_CONFIG_EXPORT_WEBSITE_LABEL="Website"
COM_COMPONENTBUILDER_CONFIG_EXPORT_WEBSITE_MESSAGE="Error! Please add website here."
COM_COMPONENTBUILDER_CONFIG_FLAT_LOAD="Flat"
COM_COMPONENTBUILDER_CONFIG_FOLDER_PATHS="Folder Paths"
COM_COMPONENTBUILDER_CONFIG_FORCE_LOAD="Force"
@ -2219,6 +2251,7 @@ COM_COMPONENTBUILDER_CONFIG_FROMNAME_LABEL="From Name"
COM_COMPONENTBUILDER_CONFIG_GIT_FOLDER_PATH_DESCRIPTION="Here you can set the path to the git folder."
COM_COMPONENTBUILDER_CONFIG_GIT_FOLDER_PATH_HINT="/home/user/git"
COM_COMPONENTBUILDER_CONFIG_GIT_FOLDER_PATH_LABEL="Git Folder Path"
COM_COMPONENTBUILDER_CONFIG_GIT_FOLDER_PATH_MESSAGE="Error! Please add folder path here."
COM_COMPONENTBUILDER_CONFIG_GLOBAL="Global"
COM_COMPONENTBUILDER_CONFIG_GLOBAL_DESC="The Global Parameters"
COM_COMPONENTBUILDER_CONFIG_GLOBAL_LABEL="Global"
@ -2435,6 +2468,7 @@ COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_CODENAME="Codename"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_CODENAME_DESCRIPTION="Add Name in Code Here"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_CODENAME_HINT="codename"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_CODENAME_LABEL="Name in Code"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_CODENAME_MESSAGE="Error! Please add name in code here."
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_COG="Cog"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_COGS="Cogs"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_COMMENT="Comment"
@ -2474,6 +2508,7 @@ COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_DESCRIPTION="Description"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_DESCRIPTION_DESCRIPTION="Enter some description"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_DESCRIPTION_HINT="Description Here"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_DESCRIPTION_LABEL="Description"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_DESCRIPTION_MESSAGE="Error! Please add description here."
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_DETAILS="Details"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_DOWNLOAD="Download"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_DYNAMIC_GET="Dynamic Get"
@ -2557,6 +2592,7 @@ COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_MENU_TWO="Menu 2"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_METHOD_DESCRIPTION="Add Controller Method Name Here"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_METHOD_HINT="methodName"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_METHOD_LABEL="Target Controller Method"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_METHOD_MESSAGE="Error! Please add controller method name here."
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_MINUS="Minus"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_MINUS_SIGN="Minus Sign"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_MOBILE="Mobile"
@ -2570,6 +2606,7 @@ COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_NAME="Name"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_NAME_DESCRIPTION="Enter Name Here"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_NAME_HINT="Name Here"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_NAME_LABEL="Name"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_NAME_MESSAGE="Error! Please add name here."
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_NEW="A New Custom Admin View"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_NEW_TAB="New Tab"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_NEW_TAB_TWO="New Tab 2"
@ -2673,6 +2710,7 @@ COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_SYSTEM_NAME="System Name"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_SYSTEM_NAME_DESCRIPTION="Used only in the system."
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_SYSTEM_NAME_HINT="The System Name Here"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_SYSTEM_NAME_LABEL="System Name"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_SYSTEM_NAME_MESSAGE="Error! Please add some text here."
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_TABLET="Tablet"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_TAG="Tag"
COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_TAGS="Tags"
@ -2777,6 +2815,7 @@ COM_COMPONENTBUILDER_CUSTOM_CODE_FROM_LINE="From Line"
COM_COMPONENTBUILDER_CUSTOM_CODE_FROM_LINE_DESCRIPTION="The line from where to start adding the code."
COM_COMPONENTBUILDER_CUSTOM_CODE_FROM_LINE_HINT="Only Numbers"
COM_COMPONENTBUILDER_CUSTOM_CODE_FROM_LINE_LABEL="From Line (Zero based)"
COM_COMPONENTBUILDER_CUSTOM_CODE_FROM_LINE_MESSAGE="Error! Please add amount paid here."
COM_COMPONENTBUILDER_CUSTOM_CODE_FUNCTION_NAME="Function Name"
COM_COMPONENTBUILDER_CUSTOM_CODE_FUNCTION_NAME_DESCRIPTION="The name for this code snippet"
COM_COMPONENTBUILDER_CUSTOM_CODE_FUNCTION_NAME_LABEL="Function Name"
@ -2784,10 +2823,12 @@ COM_COMPONENTBUILDER_CUSTOM_CODE_HASHENDTARGET="Hashendtarget"
COM_COMPONENTBUILDER_CUSTOM_CODE_HASHENDTARGET_DESCRIPTION="The end hash target to help insert the code until the correct place, if the line position change. This hash is the md5 of a few lines below the custom code"
COM_COMPONENTBUILDER_CUSTOM_CODE_HASHENDTARGET_HINT="autogenerated md5 hash"
COM_COMPONENTBUILDER_CUSTOM_CODE_HASHENDTARGET_LABEL="End Hash Target"
COM_COMPONENTBUILDER_CUSTOM_CODE_HASHENDTARGET_MESSAGE="Error! Please add some text here."
COM_COMPONENTBUILDER_CUSTOM_CODE_HASHTARGET="Hashtarget"
COM_COMPONENTBUILDER_CUSTOM_CODE_HASHTARGET_DESCRIPTION="The start hash target to help insert the code at the correct place, if the line position change. This hash is the md5 of a few lines above the custom code"
COM_COMPONENTBUILDER_CUSTOM_CODE_HASHTARGET_HINT="autogenerated md5 hash"
COM_COMPONENTBUILDER_CUSTOM_CODE_HASHTARGET_LABEL="Start Hash Target"
COM_COMPONENTBUILDER_CUSTOM_CODE_HASHTARGET_MESSAGE="Error! Please add some text here."
COM_COMPONENTBUILDER_CUSTOM_CODE_HASH_AUTOMATION="Hash (automation)"
COM_COMPONENTBUILDER_CUSTOM_CODE_HTML="HTML"
COM_COMPONENTBUILDER_CUSTOM_CODE_ID="Id"
@ -2911,6 +2952,7 @@ COM_COMPONENTBUILDER_CUSTOM_CODE_PATH="Path"
COM_COMPONENTBUILDER_CUSTOM_CODE_PATH_DESCRIPTION="File path of where this code should be added."
COM_COMPONENTBUILDER_CUSTOM_CODE_PATH_HINT="File Path Here"
COM_COMPONENTBUILDER_CUSTOM_CODE_PATH_LABEL="File Path"
COM_COMPONENTBUILDER_CUSTOM_CODE_PATH_MESSAGE="Error! Please add target path."
COM_COMPONENTBUILDER_CUSTOM_CODE_PERMISSION="Permissions"
COM_COMPONENTBUILDER_CUSTOM_CODE_PHPJS="PHP/JS"
COM_COMPONENTBUILDER_CUSTOM_CODE_PUBLISHING="Publishing"
@ -2921,6 +2963,7 @@ COM_COMPONENTBUILDER_CUSTOM_CODE_SYSTEM_NAME="System Name"
COM_COMPONENTBUILDER_CUSTOM_CODE_SYSTEM_NAME_DESCRIPTION="Used only in the system."
COM_COMPONENTBUILDER_CUSTOM_CODE_SYSTEM_NAME_HINT="The System Name Here"
COM_COMPONENTBUILDER_CUSTOM_CODE_SYSTEM_NAME_LABEL="System Name"
COM_COMPONENTBUILDER_CUSTOM_CODE_SYSTEM_NAME_MESSAGE="Error! Please add some text here."
COM_COMPONENTBUILDER_CUSTOM_CODE_TARGET="Target"
COM_COMPONENTBUILDER_CUSTOM_CODE_TARGET_DESCRIPTION="Set the way this code will be added to the component.<br />Hash automation means it is added using the hash target of the lines surrounding the code.<br />JCB manual means you add a place-holder in Component Builder User Interface area in one of the custom code blocks manually, and this code is added in at those place holders in any component."
COM_COMPONENTBUILDER_CUSTOM_CODE_TARGET_LABEL="Target"
@ -2928,6 +2971,7 @@ COM_COMPONENTBUILDER_CUSTOM_CODE_TO_LINE="To Line"
COM_COMPONENTBUILDER_CUSTOM_CODE_TO_LINE_DESCRIPTION="The line to where the code must be replaced."
COM_COMPONENTBUILDER_CUSTOM_CODE_TO_LINE_HINT="Only Numbers"
COM_COMPONENTBUILDER_CUSTOM_CODE_TO_LINE_LABEL="To Line (Zero based)"
COM_COMPONENTBUILDER_CUSTOM_CODE_TO_LINE_MESSAGE="Error! Please add line number here."
COM_COMPONENTBUILDER_CUSTOM_CODE_TYPE="Type"
COM_COMPONENTBUILDER_CUSTOM_CODE_TYPE_DESCRIPTION="How To Add the Code to the file"
COM_COMPONENTBUILDER_CUSTOM_CODE_TYPE_LABEL="Add Type"
@ -3085,6 +3129,7 @@ COM_COMPONENTBUILDER_DYNAMIC_GET_GETCUSTOMS="getCustoms"
COM_COMPONENTBUILDER_DYNAMIC_GET_GETCUSTOM_DESCRIPTION="Set the Method name for this dynamic get."
COM_COMPONENTBUILDER_DYNAMIC_GET_GETCUSTOM_HINT="getMethodName"
COM_COMPONENTBUILDER_DYNAMIC_GET_GETCUSTOM_LABEL="Custom Name"
COM_COMPONENTBUILDER_DYNAMIC_GET_GETCUSTOM_MESSAGE="Error! Please add method name here."
COM_COMPONENTBUILDER_DYNAMIC_GET_GETITEM="getItem"
COM_COMPONENTBUILDER_DYNAMIC_GET_GETLISTQUERY="getListQuery"
COM_COMPONENTBUILDER_DYNAMIC_GET_GETTYPE="Gettype"
@ -3111,6 +3156,7 @@ COM_COMPONENTBUILDER_DYNAMIC_GET_JOIN_DB_TABLE_LABEL="Join DB Tables"
COM_COMPONENTBUILDER_DYNAMIC_GET_JOIN_FIELD_DESCRIPTION="Name of the field"
COM_COMPONENTBUILDER_DYNAMIC_GET_JOIN_FIELD_HINT="b.field"
COM_COMPONENTBUILDER_DYNAMIC_GET_JOIN_FIELD_LABEL="Join Field"
COM_COMPONENTBUILDER_DYNAMIC_GET_JOIN_FIELD_MESSAGE="Error! Please add field name here."
COM_COMPONENTBUILDER_DYNAMIC_GET_JOIN_INNER="Join INNER"
COM_COMPONENTBUILDER_DYNAMIC_GET_JOIN_LEFT="Join LEFT"
COM_COMPONENTBUILDER_DYNAMIC_GET_JOIN_LEFT_OUTER="Join LEFT OUTER"
@ -3124,6 +3170,7 @@ COM_COMPONENTBUILDER_DYNAMIC_GET_K="k"
COM_COMPONENTBUILDER_DYNAMIC_GET_KEY_DESCRIPTION="The table as name."
COM_COMPONENTBUILDER_DYNAMIC_GET_KEY_HINT="key"
COM_COMPONENTBUILDER_DYNAMIC_GET_KEY_LABEL="Table Key/As Name"
COM_COMPONENTBUILDER_DYNAMIC_GET_KEY_MESSAGE="Error! Please add table as name here."
COM_COMPONENTBUILDER_DYNAMIC_GET_KK="kk"
COM_COMPONENTBUILDER_DYNAMIC_GET_L="l"
COM_COMPONENTBUILDER_DYNAMIC_GET_LESS_THAN="less than"
@ -3145,6 +3192,7 @@ COM_COMPONENTBUILDER_DYNAMIC_GET_NAME="Name"
COM_COMPONENTBUILDER_DYNAMIC_GET_NAME_DESCRIPTION="The variable name."
COM_COMPONENTBUILDER_DYNAMIC_GET_NAME_HINT="variableName"
COM_COMPONENTBUILDER_DYNAMIC_GET_NAME_LABEL="Name"
COM_COMPONENTBUILDER_DYNAMIC_GET_NAME_MESSAGE="Error! Please add variable name here."
COM_COMPONENTBUILDER_DYNAMIC_GET_NEW="A New Dynamic Get"
COM_COMPONENTBUILDER_DYNAMIC_GET_NN="nn"
COM_COMPONENTBUILDER_DYNAMIC_GET_NO="No"
@ -3159,6 +3207,7 @@ COM_COMPONENTBUILDER_DYNAMIC_GET_O="o"
COM_COMPONENTBUILDER_DYNAMIC_GET_ON_FIELD_DESCRIPTION="Name of the field"
COM_COMPONENTBUILDER_DYNAMIC_GET_ON_FIELD_HINT="a.mainfield"
COM_COMPONENTBUILDER_DYNAMIC_GET_ON_FIELD_LABEL="On Field"
COM_COMPONENTBUILDER_DYNAMIC_GET_ON_FIELD_MESSAGE="Error! Please add field name here."
COM_COMPONENTBUILDER_DYNAMIC_GET_OO="oo"
COM_COMPONENTBUILDER_DYNAMIC_GET_OPERATOR_DESCRIPTION="Select the operator"
COM_COMPONENTBUILDER_DYNAMIC_GET_OPERATOR_LABEL="Comparison Operators"
@ -3221,11 +3270,13 @@ COM_COMPONENTBUILDER_DYNAMIC_GET_STATE="State"
COM_COMPONENTBUILDER_DYNAMIC_GET_STATE_KEY_DESCRIPTION="The key to use to get state value or the var name."
COM_COMPONENTBUILDER_DYNAMIC_GET_STATE_KEY_HINT="id"
COM_COMPONENTBUILDER_DYNAMIC_GET_STATE_KEY_LABEL="State Key"
COM_COMPONENTBUILDER_DYNAMIC_GET_STATE_KEY_MESSAGE="Error! Please add state key here."
COM_COMPONENTBUILDER_DYNAMIC_GET_STATUS="Status"
COM_COMPONENTBUILDER_DYNAMIC_GET_T="t"
COM_COMPONENTBUILDER_DYNAMIC_GET_TABLE_KEY_DESCRIPTION="The key to use to get table value."
COM_COMPONENTBUILDER_DYNAMIC_GET_TABLE_KEY_HINT="a.id"
COM_COMPONENTBUILDER_DYNAMIC_GET_TABLE_KEY_LABEL="Table Key"
COM_COMPONENTBUILDER_DYNAMIC_GET_TABLE_KEY_MESSAGE="Error! Please add table key here."
COM_COMPONENTBUILDER_DYNAMIC_GET_TAGS="Tags"
COM_COMPONENTBUILDER_DYNAMIC_GET_THIS="This"
COM_COMPONENTBUILDER_DYNAMIC_GET_TT="tt"
@ -3239,6 +3290,7 @@ COM_COMPONENTBUILDER_DYNAMIC_GET_V="v"
COM_COMPONENTBUILDER_DYNAMIC_GET_VALUE_KEY_DESCRIPTION="The key to use to set value."
COM_COMPONENTBUILDER_DYNAMIC_GET_VALUE_KEY_HINT="b.field or $this->fieldvalue"
COM_COMPONENTBUILDER_DYNAMIC_GET_VALUE_KEY_LABEL="Value Key"
COM_COMPONENTBUILDER_DYNAMIC_GET_VALUE_KEY_MESSAGE="Error! Please add value key here."
COM_COMPONENTBUILDER_DYNAMIC_GET_VERSION_DESC="A count of the number of times this Dynamic Get has been revised."
COM_COMPONENTBUILDER_DYNAMIC_GET_VERSION_LABEL="Revision"
COM_COMPONENTBUILDER_DYNAMIC_GET_VIEW_SELECTION="View Selection"
@ -3414,6 +3466,7 @@ COM_COMPONENTBUILDER_FIELDTYPE_EDIT="Editing the Fieldtype"
COM_COMPONENTBUILDER_FIELDTYPE_ERROR_UNIQUE_ALIAS="Another Fieldtype has the same alias."
COM_COMPONENTBUILDER_FIELDTYPE_EXAMPLE_HINT="Value/Example Here"
COM_COMPONENTBUILDER_FIELDTYPE_EXAMPLE_LABEL="Value/Example"
COM_COMPONENTBUILDER_FIELDTYPE_EXAMPLE_MESSAGE="Error! Please add value/example here."
COM_COMPONENTBUILDER_FIELDTYPE_FIELDS="Fields"
COM_COMPONENTBUILDER_FIELDTYPE_FIELDTYPE_CATEGORY="Fieldtype Category"
COM_COMPONENTBUILDER_FIELDTYPE_ID="Id"
@ -3427,6 +3480,7 @@ COM_COMPONENTBUILDER_FIELDTYPE_NAME="Name"
COM_COMPONENTBUILDER_FIELDTYPE_NAME_DESCRIPTION="Enter Name Here"
COM_COMPONENTBUILDER_FIELDTYPE_NAME_HINT="Name Here"
COM_COMPONENTBUILDER_FIELDTYPE_NAME_LABEL="Name"
COM_COMPONENTBUILDER_FIELDTYPE_NAME_MESSAGE="Error! Please add name here."
COM_COMPONENTBUILDER_FIELDTYPE_NEW="A New Fieldtype"
COM_COMPONENTBUILDER_FIELDTYPE_NOTE_ON_FIELDS_DESCRIPTION="To get more form field settings go to https://docs.joomla.org/Form_field"
COM_COMPONENTBUILDER_FIELDTYPE_NOTE_ON_FIELDS_LABEL="More Standard form field types"
@ -3441,6 +3495,7 @@ COM_COMPONENTBUILDER_FIELDTYPE_SHORT_DESCRIPTION="Short Description"
COM_COMPONENTBUILDER_FIELDTYPE_SHORT_DESCRIPTION_DESCRIPTION="Enter short description"
COM_COMPONENTBUILDER_FIELDTYPE_SHORT_DESCRIPTION_HINT="Your Short Description Here"
COM_COMPONENTBUILDER_FIELDTYPE_SHORT_DESCRIPTION_LABEL="Short Description"
COM_COMPONENTBUILDER_FIELDTYPE_SHORT_DESCRIPTION_MESSAGE="Error! Please add some short description here."
COM_COMPONENTBUILDER_FIELDTYPE_STATUS="Status"
COM_COMPONENTBUILDER_FIELDTYPE_TRANSLATABLE_DESCRIPTION="Select if the property is translatable."
COM_COMPONENTBUILDER_FIELDTYPE_TRANSLATABLE_LABEL="Translatable"
@ -3481,6 +3536,7 @@ COM_COMPONENTBUILDER_FIELD_DATADEFAULT_OTHER="Datadefault Other"
COM_COMPONENTBUILDER_FIELD_DATADEFAULT_OTHER_DESCRIPTION="The other default data for mysql"
COM_COMPONENTBUILDER_FIELD_DATADEFAULT_OTHER_HINT="Other Default Here"
COM_COMPONENTBUILDER_FIELD_DATADEFAULT_OTHER_LABEL="Other Default"
COM_COMPONENTBUILDER_FIELD_DATADEFAULT_OTHER_MESSAGE="Error! Please add other default here."
COM_COMPONENTBUILDER_FIELD_DATALENGHT="Datalenght"
COM_COMPONENTBUILDER_FIELD_DATALENGHT_DESCRIPTION="The data length or value for mysql (size)"
COM_COMPONENTBUILDER_FIELD_DATALENGHT_LABEL="Data Length/Values"
@ -3488,6 +3544,7 @@ COM_COMPONENTBUILDER_FIELD_DATALENGHT_OTHER="Datalenght Other"
COM_COMPONENTBUILDER_FIELD_DATALENGHT_OTHER_DESCRIPTION="The other data length/values for mysql"
COM_COMPONENTBUILDER_FIELD_DATALENGHT_OTHER_HINT="Other Here"
COM_COMPONENTBUILDER_FIELD_DATALENGHT_OTHER_LABEL="Other"
COM_COMPONENTBUILDER_FIELD_DATALENGHT_OTHER_MESSAGE="Error! Please add other data length/values here."
COM_COMPONENTBUILDER_FIELD_DATATYPE="Datatype"
COM_COMPONENTBUILDER_FIELD_DATATYPE_DESCRIPTION="The data type for mysql"
COM_COMPONENTBUILDER_FIELD_DATATYPE_LABEL="Data Type"
@ -3531,6 +3588,7 @@ COM_COMPONENTBUILDER_FIELD_NAME="Name"
COM_COMPONENTBUILDER_FIELD_NAME_DESCRIPTION="Enter Name Here"
COM_COMPONENTBUILDER_FIELD_NAME_HINT="Name Here"
COM_COMPONENTBUILDER_FIELD_NAME_LABEL="Name"
COM_COMPONENTBUILDER_FIELD_NAME_MESSAGE="Error! Please add name here."
COM_COMPONENTBUILDER_FIELD_NEW="A New Field"
COM_COMPONENTBUILDER_FIELD_NO="No"
COM_COMPONENTBUILDER_FIELD_NONE="None"
@ -3664,6 +3722,7 @@ COM_COMPONENTBUILDER_FTP_NAME="Name"
COM_COMPONENTBUILDER_FTP_NAME_DESCRIPTION="Enter Name Here"
COM_COMPONENTBUILDER_FTP_NAME_HINT="Name Here"
COM_COMPONENTBUILDER_FTP_NAME_LABEL="Name"
COM_COMPONENTBUILDER_FTP_NAME_MESSAGE="Error! Please add name here."
COM_COMPONENTBUILDER_FTP_NEW="A New FTP"
COM_COMPONENTBUILDER_FTP_NOTE_FTP_SIGNATURE_DESCRIPTION="Add your FTP signature in the given field.<br /><b>Here are the details of the signature:</b><br />&nbsp;&nbsp;&nbsp;string $host = '127.0.0.1'<br />&nbsp;&nbsp;&nbsp;string $port = '21'<br />&nbsp;&nbsp;&nbsp;array $options = array()<br />&nbsp;&nbsp;&nbsp;string $user = null<br />&nbsp;&nbsp;&nbsp;string $pass = null<br />&nbsp;&nbsp;&nbsp;OPTIONS = Array with any of these options:<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;type=>[FTP_AUTOASCII|FTP_ASCII|FTP_BINARY]<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;timeout=>(int)<br /><b>Here is an example signature:</b><br /><code>host=HOSTNAME&port=PORT_INT&options[type]=FTP_BINARY&options[timeout]=15&username=user@name.com&password=password</code>"
COM_COMPONENTBUILDER_FTP_NOTE_FTP_SIGNATURE_LABEL="The FTP Signature Details"
@ -3675,6 +3734,7 @@ COM_COMPONENTBUILDER_FTP_SIGNATURE="Signature"
COM_COMPONENTBUILDER_FTP_SIGNATURE_DESCRIPTION="The FTP login details needed. If the basic key was not set when you created this FTP signature, then add the basic key, come back here and save this FTP signature again to ensure that it gets encrypted."
COM_COMPONENTBUILDER_FTP_SIGNATURE_HINT="host=HOSTNAME&port=PORT_INT&options[type]=FTP_BINARY&options[timeout]=15&username=user@name.com&password=password"
COM_COMPONENTBUILDER_FTP_SIGNATURE_LABEL="FTP Server (Signature)<br /><small>(encrypted field)</small><br /><small><i>This field is only encrypted if your basic key in the JCB global settings is set.</i></small>"
COM_COMPONENTBUILDER_FTP_SIGNATURE_MESSAGE="Error! Please add some text here."
COM_COMPONENTBUILDER_FTP_STATUS="Status"
COM_COMPONENTBUILDER_FTP_VERSION_DESC="A count of the number of times this FTP has been revised."
COM_COMPONENTBUILDER_FTP_VERSION_LABEL="Revision"
@ -3782,6 +3842,7 @@ COM_COMPONENTBUILDER_HELP_DOCUMENT_TITLE="Title"
COM_COMPONENTBUILDER_HELP_DOCUMENT_TITLE_DESCRIPTION="Enter Title Here"
COM_COMPONENTBUILDER_HELP_DOCUMENT_TITLE_HINT="Title Here"
COM_COMPONENTBUILDER_HELP_DOCUMENT_TITLE_LABEL="Title"
COM_COMPONENTBUILDER_HELP_DOCUMENT_TITLE_MESSAGE="Error! Please add title here."
COM_COMPONENTBUILDER_HELP_DOCUMENT_TYPE="Type"
COM_COMPONENTBUILDER_HELP_DOCUMENT_TYPE_DESCRIPTION="Select the help type."
COM_COMPONENTBUILDER_HELP_DOCUMENT_TYPE_LABEL="Type"
@ -3789,6 +3850,7 @@ COM_COMPONENTBUILDER_HELP_DOCUMENT_URL="Url"
COM_COMPONENTBUILDER_HELP_DOCUMENT_URL_DESCRIPTION="Enter url"
COM_COMPONENTBUILDER_HELP_DOCUMENT_URL_HINT="http://www.example.com"
COM_COMPONENTBUILDER_HELP_DOCUMENT_URL_LABEL="URL"
COM_COMPONENTBUILDER_HELP_DOCUMENT_URL_MESSAGE="Error! Please add url here."
COM_COMPONENTBUILDER_HELP_DOCUMENT_VERSION_DESC="A count of the number of times this Help Document has been revised."
COM_COMPONENTBUILDER_HELP_DOCUMENT_VERSION_LABEL="Revision"
COM_COMPONENTBUILDER_HELP_MANAGER="Help"
@ -3959,6 +4021,7 @@ COM_COMPONENTBUILDER_JOOMLA_COMPONENT_AUTHOR="Author"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_AUTHOR_DESCRIPTION="The Author's Name &amp; Surname."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_AUTHOR_HINT="Author Name &amp; Surname Here"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_AUTHOR_LABEL="Author"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_AUTHOR_MESSAGE="Error! Please add author name here."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_BACK="Back"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_BACKUP_BUTTON_ACCESS="Joomla Component Backup Button Access"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_BACKUP_BUTTON_ACCESS_DESC=" Allows the users in this group to access the backup button."
@ -3978,10 +4041,12 @@ COM_COMPONENTBUILDER_JOOMLA_COMPONENT_COMPANYNAME="Companyname"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_COMPANYNAME_DESCRIPTION="Enter Company Name Here"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_COMPANYNAME_HINT="Company Name Here"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_COMPANYNAME_LABEL="Company Name"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_COMPANYNAME_MESSAGE="Error! Please add company name here."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_COMPONENT_VERSION="Component Version"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_COMPONENT_VERSION_DESCRIPTION="Add Version Number Here"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_COMPONENT_VERSION_HINT="1.0.0"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_COMPONENT_VERSION_LABEL="Version"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_COMPONENT_VERSION_MESSAGE="Error! Please add version here."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_COPYRIGHT="Copyright"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_COPYRIGHT_DESCRIPTION="Add Copyright Here"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_COPYRIGHT_HINT="Add Copyright Here"
@ -4013,6 +4078,7 @@ COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EMAIL="Email"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EMAIL_DESCRIPTION="Enter Email"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EMAIL_HINT="demo@example.com"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EMAIL_LABEL="Email"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EMAIL_MESSAGE="Error! Please add email address here."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EMPTYCONTRIBUTORS="Emptycontributors"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EMPTYCONTRIBUTORS_DESCRIPTION="Set if a list of empty contributor fields should be added."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EMPTYCONTRIBUTORS_LABEL="Empty Contributor Fields"
@ -4021,16 +4087,19 @@ COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_BUY_LINK="Export Buy Link"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_BUY_LINK_DESCRIPTION="Enter link where your JCB package key can be bought."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_BUY_LINK_HINT="http://www.example.com/buy-keys"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_BUY_LINK_LABEL="Buy Link<br /><small>(to get key)</small>"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_BUY_LINK_MESSAGE="Error! Please add link here."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_COMPONENTS_BUTTON_ACCESS="Joomla Component Export Components Button Access"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_COMPONENTS_BUTTON_ACCESS_DESC=" Allows the users in this group to access the export components button."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_KEY="Export Key"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_KEY_DESCRIPTION="The key used to lock the data during export."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_KEY_HINT="Export Key Here"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_KEY_LABEL="Export Key<br /><small>(encrypted field)</small>"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_KEY_MESSAGE="Error! Please add export key here."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_PACKAGE_LINK="Export Package Link"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_PACKAGE_LINK_DESCRIPTION="Enter link where you latest JCB package can be found"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_PACKAGE_LINK_HINT="http://www.example.com/buy-package"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_PACKAGE_LINK_LABEL="Package Link<br /><small>(to get updated package)</small>"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_PACKAGE_LINK_MESSAGE="Error! Please add link here."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_FRONT="Front"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_FTP="FTP"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ID="Id"
@ -4067,9 +4136,11 @@ COM_COMPONENTBUILDER_JOOMLA_COMPONENT_NAME_CODE="Name Code"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_NAME_CODE_DESCRIPTION="Add Name in Code Here"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_NAME_CODE_HINT="codename"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_NAME_CODE_LABEL="Name in Code"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_NAME_CODE_MESSAGE="Error! Please add name in code here."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_NAME_DESCRIPTION="Enter Name Here"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_NAME_HINT="Name Here"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_NAME_LABEL="Name"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_NAME_MESSAGE="Error! Please add name here."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_NEW="A New Joomla Component"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_NO="No"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_NONE="None"
@ -4224,6 +4295,7 @@ COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SHORT_DESCRIPTION="Short Description"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SHORT_DESCRIPTION_DESCRIPTION="Enter short description"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SHORT_DESCRIPTION_HINT="Your Short Description Here"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SHORT_DESCRIPTION_LABEL="Short Description"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SHORT_DESCRIPTION_MESSAGE="Error! Please add some short description here."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SHOW_DESCRIPTION="Select where you want this contributor to show in the component."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SHOW_LABEL="Show"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SITE_VIEWS="Site Views"
@ -4236,9 +4308,11 @@ COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SYSTEM_NAME="System Name"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SYSTEM_NAME_DESCRIPTION="Used only in the system."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SYSTEM_NAME_HINT="The System Name Here"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SYSTEM_NAME_LABEL="System Name"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SYSTEM_NAME_MESSAGE="Error! Please add some text here."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_TITLE_DESCRIPTION="Enter contributor's title in relation to this component"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_TITLE_HINT="Contributor's Role"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_TITLE_LABEL="Job Title"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_TITLE_MESSAGE="Error! Please add some text here."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_TOIGNORE="Toignore"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_TOIGNORE_DESCRIPTION="Coma separated names of folders or files to ignore when updating the repository files during compilations."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_TOIGNORE_HINT="Coma separated names of folders or files"
@ -4254,6 +4328,7 @@ COM_COMPONENTBUILDER_JOOMLA_COMPONENT_UPDATE_SERVER_FTP_DESCRIPTION="Select your
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_UPDATE_SERVER_FTP_LABEL="Update Server (FTP)"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_UPDATE_SERVER_HINT="http://www.example.com/update/component.xml"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_UPDATE_SERVER_LABEL="Update Server"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_UPDATE_SERVER_MESSAGE="Error! Please add url here."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_UPDATE_SERVER_TARGET="Update Server Target"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_UPDATE_SERVER_TARGET_DESCRIPTION="Select the type of way you would like the update server to be set."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_UPDATE_SERVER_TARGET_LABEL="Update Server Target"
@ -4271,14 +4346,17 @@ COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WEBSITE="Website"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WEBSITE_DESCRIPTION="Enter website address"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WEBSITE_HINT="http://www.example.com"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WEBSITE_LABEL="Website"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WEBSITE_MESSAGE="Error! Please add website here."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WHMCS_KEY="Whmcs Key"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WHMCS_KEY_DESCRIPTION="Add your WHMCS Secret Key here that is needed for this license"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WHMCS_KEY_HINT="Secret Key"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WHMCS_KEY_LABEL="WHMCS Secret Key<br /><small>(encrypted field)</small>"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WHMCS_KEY_MESSAGE="Error! Please add some secret key here."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WHMCS_URL="Whmcs Url"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WHMCS_URL_DESCRIPTION="Enter whmcs address"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WHMCS_URL_HINT="http://www.yoursite.com/whmcs"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WHMCS_URL_LABEL="URL to your WHMCS install"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WHMCS_URL_MESSAGE="Error! Please add website here."
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_YES="Yes"
COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ZIP="ZIP"
COM_COMPONENTBUILDER_KEEP_HISTORY="Keep History"
@ -4346,6 +4424,7 @@ COM_COMPONENTBUILDER_LANGUAGE_LANGTAG="Langtag"
COM_COMPONENTBUILDER_LANGUAGE_LANGTAG_DESCRIPTION="Enter the language tag example: en-GB for English (UK). This should be the exact prefix used for the language installed or to be installed."
COM_COMPONENTBUILDER_LANGUAGE_LANGTAG_HINT="en-GB"
COM_COMPONENTBUILDER_LANGUAGE_LANGTAG_LABEL="Language Tag"
COM_COMPONENTBUILDER_LANGUAGE_LANGTAG_MESSAGE="Error! Please add language tag here."
COM_COMPONENTBUILDER_LANGUAGE_MODIFIED_BY_DESC="The last user that modified this Language."
COM_COMPONENTBUILDER_LANGUAGE_MODIFIED_BY_LABEL="Modified By"
COM_COMPONENTBUILDER_LANGUAGE_MODIFIED_DATE_DESC="The date this Language was modified."
@ -4354,6 +4433,7 @@ COM_COMPONENTBUILDER_LANGUAGE_NAME="Name"
COM_COMPONENTBUILDER_LANGUAGE_NAME_DESCRIPTION="Enter Name Here"
COM_COMPONENTBUILDER_LANGUAGE_NAME_HINT="Name Here"
COM_COMPONENTBUILDER_LANGUAGE_NAME_LABEL="Name"
COM_COMPONENTBUILDER_LANGUAGE_NAME_MESSAGE="Error! Please add name here."
COM_COMPONENTBUILDER_LANGUAGE_NEW="A New Language"
COM_COMPONENTBUILDER_LANGUAGE_ORDERING_LABEL="Ordering"
COM_COMPONENTBUILDER_LANGUAGE_PERMISSION="Permissions"
@ -4416,6 +4496,7 @@ COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_EDIT="Editing the Language Translation
COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_ENTRANSLATION="Entranslation"
COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_ENTRANSLATION_HINT="Automatically generated!"
COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_ENTRANSLATION_LABEL="English String"
COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_ENTRANSLATION_MESSAGE="Error! Please English translated string here."
COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_ERROR_UNIQUE_ALIAS="Another Language Translation has the same alias."
COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_ID="Id"
COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_LANGUAGE="Language"
@ -4434,6 +4515,7 @@ COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_TRANSLATION="Translation"
COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_TRANSLATION_DESCRIPTION="The translation strings."
COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_TRANSLATION_HINT="Translated String Here"
COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_TRANSLATION_LABEL="Translated String"
COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_TRANSLATION_MESSAGE="Error! Please add translated string here."
COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_VERSION_DESC="A count of the number of times this Language Translation has been revised."
COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_VERSION_LABEL="Revision"
COM_COMPONENTBUILDER_LANGUAGE_VERSION_DESC="A count of the number of times this Language has been revised."
@ -4493,6 +4575,7 @@ COM_COMPONENTBUILDER_LAYOUT_ALIAS="Alias"
COM_COMPONENTBUILDER_LAYOUT_ALIAS_DESCRIPTION="Add Name in Code Here"
COM_COMPONENTBUILDER_LAYOUT_ALIAS_HINT="codename"
COM_COMPONENTBUILDER_LAYOUT_ALIAS_LABEL="Name in Code"
COM_COMPONENTBUILDER_LAYOUT_ALIAS_MESSAGE="Error! Please add name in code here."
COM_COMPONENTBUILDER_LAYOUT_CREATED_BY_DESC="The user that created this Layout."
COM_COMPONENTBUILDER_LAYOUT_CREATED_BY_LABEL="Created By"
COM_COMPONENTBUILDER_LAYOUT_CREATED_DATE_DESC="The date this Layout was created."
@ -4502,6 +4585,7 @@ COM_COMPONENTBUILDER_LAYOUT_DESCRIPTION="Description"
COM_COMPONENTBUILDER_LAYOUT_DESCRIPTION_DESCRIPTION="Enter some description"
COM_COMPONENTBUILDER_LAYOUT_DESCRIPTION_HINT="Description Here"
COM_COMPONENTBUILDER_LAYOUT_DESCRIPTION_LABEL="Description"
COM_COMPONENTBUILDER_LAYOUT_DESCRIPTION_MESSAGE="Error! Please add description here."
COM_COMPONENTBUILDER_LAYOUT_DETAILS="Details"
COM_COMPONENTBUILDER_LAYOUT_DYNAMIC_GET="Dynamic Get"
COM_COMPONENTBUILDER_LAYOUT_DYNAMIC_GET_DESCRIPTION="Select a dynamic get"
@ -4522,6 +4606,7 @@ COM_COMPONENTBUILDER_LAYOUT_NAME="Name"
COM_COMPONENTBUILDER_LAYOUT_NAME_DESCRIPTION="Enter Name Here"
COM_COMPONENTBUILDER_LAYOUT_NAME_HINT="Name Here"
COM_COMPONENTBUILDER_LAYOUT_NAME_LABEL="Name"
COM_COMPONENTBUILDER_LAYOUT_NAME_MESSAGE="Error! Please add name here."
COM_COMPONENTBUILDER_LAYOUT_NEW="A New Layout"
COM_COMPONENTBUILDER_LAYOUT_NO="No"
COM_COMPONENTBUILDER_LAYOUT_NOTE_ADD_LANGUAGE_STRING_DESCRIPTION="<code>&lt;?php echo JText::_(&apos;Text&apos;); ?&gt;</code>"
@ -4740,6 +4825,7 @@ COM_COMPONENTBUILDER_SITE_VIEW_CODENAME="Codename"
COM_COMPONENTBUILDER_SITE_VIEW_CODENAME_DESCRIPTION="Add Name in Code Here"
COM_COMPONENTBUILDER_SITE_VIEW_CODENAME_HINT="codename"
COM_COMPONENTBUILDER_SITE_VIEW_CODENAME_LABEL="Name in Code"
COM_COMPONENTBUILDER_SITE_VIEW_CODENAME_MESSAGE="Error! Please add name in code here."
COM_COMPONENTBUILDER_SITE_VIEW_COG="Cog"
COM_COMPONENTBUILDER_SITE_VIEW_COGS="Cogs"
COM_COMPONENTBUILDER_SITE_VIEW_COMMENT="Comment"
@ -4779,6 +4865,7 @@ COM_COMPONENTBUILDER_SITE_VIEW_DESCRIPTION="Description"
COM_COMPONENTBUILDER_SITE_VIEW_DESCRIPTION_DESCRIPTION="Enter some description"
COM_COMPONENTBUILDER_SITE_VIEW_DESCRIPTION_HINT="Description Here"
COM_COMPONENTBUILDER_SITE_VIEW_DESCRIPTION_LABEL="Description"
COM_COMPONENTBUILDER_SITE_VIEW_DESCRIPTION_MESSAGE="Error! Please add description here."
COM_COMPONENTBUILDER_SITE_VIEW_DETAILS="Details"
COM_COMPONENTBUILDER_SITE_VIEW_DOWNLOAD="Download"
COM_COMPONENTBUILDER_SITE_VIEW_DYNAMIC_GET="Dynamic Get"
@ -4840,6 +4927,7 @@ COM_COMPONENTBUILDER_SITE_VIEW_INFO_CIRCLE="Info Circle"
COM_COMPONENTBUILDER_SITE_VIEW_INPUT_DEFAULT_DESCRIPTION="Enter default input value"
COM_COMPONENTBUILDER_SITE_VIEW_INPUT_DEFAULT_HINT="Default Value Here"
COM_COMPONENTBUILDER_SITE_VIEW_INPUT_DEFAULT_LABEL="Default"
COM_COMPONENTBUILDER_SITE_VIEW_INPUT_DEFAULT_MESSAGE="Error! Please add default input value here."
COM_COMPONENTBUILDER_SITE_VIEW_INPUT_FILTER_DESCRIPTION="Select the filter used to sanitized the input value."
COM_COMPONENTBUILDER_SITE_VIEW_INPUT_FILTER_LABEL="Select a Filter"
COM_COMPONENTBUILDER_SITE_VIEW_INT="INT"
@ -4868,9 +4956,11 @@ COM_COMPONENTBUILDER_SITE_VIEW_MENU_TWO="Menu 2"
COM_COMPONENTBUILDER_SITE_VIEW_METHOD_DESCRIPTION="Add Controller Method Name Here"
COM_COMPONENTBUILDER_SITE_VIEW_METHOD_HINT="methodName"
COM_COMPONENTBUILDER_SITE_VIEW_METHOD_LABEL="Target Controller Method"
COM_COMPONENTBUILDER_SITE_VIEW_METHOD_MESSAGE="Error! Please add controller method name here."
COM_COMPONENTBUILDER_SITE_VIEW_METHOD_NAME_DESCRIPTION="Enter method name."
COM_COMPONENTBUILDER_SITE_VIEW_METHOD_NAME_HINT="Method Name Here"
COM_COMPONENTBUILDER_SITE_VIEW_METHOD_NAME_LABEL="Method Name"
COM_COMPONENTBUILDER_SITE_VIEW_METHOD_NAME_MESSAGE="Error! Please add method name here."
COM_COMPONENTBUILDER_SITE_VIEW_MINUS="Minus"
COM_COMPONENTBUILDER_SITE_VIEW_MINUS_SIGN="Minus Sign"
COM_COMPONENTBUILDER_SITE_VIEW_MOBILE="Mobile"
@ -4884,6 +4974,7 @@ COM_COMPONENTBUILDER_SITE_VIEW_NAME="Name"
COM_COMPONENTBUILDER_SITE_VIEW_NAME_DESCRIPTION="Enter Name Here"
COM_COMPONENTBUILDER_SITE_VIEW_NAME_HINT="Name Here"
COM_COMPONENTBUILDER_SITE_VIEW_NAME_LABEL="Name"
COM_COMPONENTBUILDER_SITE_VIEW_NAME_MESSAGE="Error! Please add name here."
COM_COMPONENTBUILDER_SITE_VIEW_NEW="A New Site View"
COM_COMPONENTBUILDER_SITE_VIEW_NEW_TAB="New Tab"
COM_COMPONENTBUILDER_SITE_VIEW_NEW_TAB_TWO="New Tab 2"
@ -4997,6 +5088,7 @@ COM_COMPONENTBUILDER_SITE_VIEW_SYSTEM_NAME="System Name"
COM_COMPONENTBUILDER_SITE_VIEW_SYSTEM_NAME_DESCRIPTION="Used only in the system."
COM_COMPONENTBUILDER_SITE_VIEW_SYSTEM_NAME_HINT="The System Name Here"
COM_COMPONENTBUILDER_SITE_VIEW_SYSTEM_NAME_LABEL="System Name"
COM_COMPONENTBUILDER_SITE_VIEW_SYSTEM_NAME_MESSAGE="Error! Please add some text here."
COM_COMPONENTBUILDER_SITE_VIEW_TABLET="Tablet"
COM_COMPONENTBUILDER_SITE_VIEW_TAG="Tag"
COM_COMPONENTBUILDER_SITE_VIEW_TAGS="Tags"
@ -5007,6 +5099,7 @@ COM_COMPONENTBUILDER_SITE_VIEW_TARGET_LABEL="Target"
COM_COMPONENTBUILDER_SITE_VIEW_TASK_NAME_DESCRIPTION="Enter Task Name Here"
COM_COMPONENTBUILDER_SITE_VIEW_TASK_NAME_HINT="Task Name Here"
COM_COMPONENTBUILDER_SITE_VIEW_TASK_NAME_LABEL="Task Name"
COM_COMPONENTBUILDER_SITE_VIEW_TASK_NAME_MESSAGE="Error! Please add task name here."
COM_COMPONENTBUILDER_SITE_VIEW_THUMBS_DOWN="Thumbs Down"
COM_COMPONENTBUILDER_SITE_VIEW_THUMBS_UP="Thumbs Up"
COM_COMPONENTBUILDER_SITE_VIEW_TOP_LEFT="Top Left"
@ -5033,6 +5126,7 @@ COM_COMPONENTBUILDER_SITE_VIEW_USER_CHECK_LABEL="User Check"
COM_COMPONENTBUILDER_SITE_VIEW_VALUE_NAME_DESCRIPTION="Enter Value Name Here"
COM_COMPONENTBUILDER_SITE_VIEW_VALUE_NAME_HINT="Value Name Here"
COM_COMPONENTBUILDER_SITE_VIEW_VALUE_NAME_LABEL="Value Name"
COM_COMPONENTBUILDER_SITE_VIEW_VALUE_NAME_MESSAGE="Error! Please add value name here."
COM_COMPONENTBUILDER_SITE_VIEW_VCARD="Vcard"
COM_COMPONENTBUILDER_SITE_VIEW_VERSION_DESC="A count of the number of times this Site View has been revised."
COM_COMPONENTBUILDER_SITE_VIEW_VERSION_LABEL="Revision"
@ -5112,6 +5206,7 @@ COM_COMPONENTBUILDER_SNIPPET_HEADING="Heading"
COM_COMPONENTBUILDER_SNIPPET_HEADING_DESCRIPTION="Enter short heading"
COM_COMPONENTBUILDER_SNIPPET_HEADING_HINT="Your Heading Here"
COM_COMPONENTBUILDER_SNIPPET_HEADING_LABEL="Heading"
COM_COMPONENTBUILDER_SNIPPET_HEADING_MESSAGE="Error! Please add some short heading here."
COM_COMPONENTBUILDER_SNIPPET_ID="Id"
COM_COMPONENTBUILDER_SNIPPET_JAVASCRIPT="JavaScript"
COM_COMPONENTBUILDER_SNIPPET_LAYOUT="Layout"
@ -5123,6 +5218,7 @@ COM_COMPONENTBUILDER_SNIPPET_NAME="Name"
COM_COMPONENTBUILDER_SNIPPET_NAME_DESCRIPTION="Enter Name Here"
COM_COMPONENTBUILDER_SNIPPET_NAME_HINT="Name Here"
COM_COMPONENTBUILDER_SNIPPET_NAME_LABEL="Name"
COM_COMPONENTBUILDER_SNIPPET_NAME_MESSAGE="Error! Please add name here."
COM_COMPONENTBUILDER_SNIPPET_NAVIGATIONS="Navigations"
COM_COMPONENTBUILDER_SNIPPET_NEW="A New Snippet"
COM_COMPONENTBUILDER_SNIPPET_ORDERING_LABEL="Ordering"
@ -5140,6 +5236,7 @@ COM_COMPONENTBUILDER_SNIPPET_URL="Url"
COM_COMPONENTBUILDER_SNIPPET_URL_DESCRIPTION="Enter url"
COM_COMPONENTBUILDER_SNIPPET_URL_HINT="http://www.example.com"
COM_COMPONENTBUILDER_SNIPPET_URL_LABEL="URL"
COM_COMPONENTBUILDER_SNIPPET_URL_MESSAGE="Error! Please add url here."
COM_COMPONENTBUILDER_SNIPPET_USAGE="Usage"
COM_COMPONENTBUILDER_SNIPPET_USAGE_DESCRIPTION="Add Usage Here"
COM_COMPONENTBUILDER_SNIPPET_USAGE_HINT="Add Usage Here"
@ -5225,6 +5322,7 @@ COM_COMPONENTBUILDER_TEMPLATE_ALIAS="Alias"
COM_COMPONENTBUILDER_TEMPLATE_ALIAS_DESCRIPTION="Add Name in Code Here"
COM_COMPONENTBUILDER_TEMPLATE_ALIAS_HINT="codename"
COM_COMPONENTBUILDER_TEMPLATE_ALIAS_LABEL="Name in Code"
COM_COMPONENTBUILDER_TEMPLATE_ALIAS_MESSAGE="Error! Please add name in code here."
COM_COMPONENTBUILDER_TEMPLATE_CREATED_BY_DESC="The user that created this Template."
COM_COMPONENTBUILDER_TEMPLATE_CREATED_BY_LABEL="Created By"
COM_COMPONENTBUILDER_TEMPLATE_CREATED_DATE_DESC="The date this Template was created."
@ -5234,6 +5332,7 @@ COM_COMPONENTBUILDER_TEMPLATE_DESCRIPTION="Description"
COM_COMPONENTBUILDER_TEMPLATE_DESCRIPTION_DESCRIPTION="Enter some description"
COM_COMPONENTBUILDER_TEMPLATE_DESCRIPTION_HINT="Description Here"
COM_COMPONENTBUILDER_TEMPLATE_DESCRIPTION_LABEL="Description"
COM_COMPONENTBUILDER_TEMPLATE_DESCRIPTION_MESSAGE="Error! Please add description here."
COM_COMPONENTBUILDER_TEMPLATE_DETAILS="Details"
COM_COMPONENTBUILDER_TEMPLATE_DYNAMIC_GET="Dynamic Get"
COM_COMPONENTBUILDER_TEMPLATE_DYNAMIC_GET_DESCRIPTION="Select a dynamic get"
@ -5251,6 +5350,7 @@ COM_COMPONENTBUILDER_TEMPLATE_NAME="Name"
COM_COMPONENTBUILDER_TEMPLATE_NAME_DESCRIPTION="Enter Name Here"
COM_COMPONENTBUILDER_TEMPLATE_NAME_HINT="Name Here"
COM_COMPONENTBUILDER_TEMPLATE_NAME_LABEL="Name"
COM_COMPONENTBUILDER_TEMPLATE_NAME_MESSAGE="Error! Please add name here."
COM_COMPONENTBUILDER_TEMPLATE_NEW="A New Template"
COM_COMPONENTBUILDER_TEMPLATE_NO="No"
COM_COMPONENTBUILDER_TEMPLATE_NOTE_ADD_LANGUAGE_STRING_DESCRIPTION="<code>&lt;?php echo JText::_(&apos;Text&apos;); ?&gt;</code>"

View File

@ -100,7 +100,7 @@
description="COM_COMPONENTBUILDER_ADMIN_VIEW_SYSTEM_NAME_DESCRIPTION"
class="text_area"
filter="STRING"
message="Error! Please add some text here."
message="COM_COMPONENTBUILDER_ADMIN_VIEW_SYSTEM_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_ADMIN_VIEW_SYSTEM_NAME_HINT"
/>
<!-- Name_single Field. Type: Text. (joomla) -->
@ -116,7 +116,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add single record name here."
message="COM_COMPONENTBUILDER_ADMIN_VIEW_NAME_SINGLE_MESSAGE"
hint="COM_COMPONENTBUILDER_ADMIN_VIEW_NAME_SINGLE_HINT"
/>
<!-- Name_list Field. Type: Text. (joomla) -->
@ -132,7 +132,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add list of records name here."
message="COM_COMPONENTBUILDER_ADMIN_VIEW_NAME_LIST_MESSAGE"
hint="COM_COMPONENTBUILDER_ADMIN_VIEW_NAME_LIST_HINT"
/>
<!-- Short_description Field. Type: Text. (joomla) -->
@ -146,7 +146,7 @@
class="text_area"
required="true"
filter="HTML"
message="Error! Please add some short description here."
message="COM_COMPONENTBUILDER_ADMIN_VIEW_SHORT_DESCRIPTION_MESSAGE"
hint="COM_COMPONENTBUILDER_ADMIN_VIEW_SHORT_DESCRIPTION_HINT"
/>
<!-- Icon Field. Type: Media. (joomla) -->
@ -480,7 +480,7 @@
disabled="false"
required="false"
filter="STRING"
message="Error! Please add name here."
message="COM_COMPONENTBUILDER_ADMIN_VIEW_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_ADMIN_VIEW_NAME_HINT"
/>
</form>
@ -561,7 +561,7 @@
disabled="false"
required="false"
filter="WORD"
message="Error! Please add key here."
message="COM_COMPONENTBUILDER_ADMIN_VIEW_KEY_MESSAGE"
hint="COM_COMPONENTBUILDER_ADMIN_VIEW_KEY_HINT"
/>
<!-- Parentkey Field. Type: Text. (joomla) -->
@ -577,7 +577,7 @@
disabled="false"
required="false"
filter="WORD"
message="Error! Please add key here."
message="COM_COMPONENTBUILDER_ADMIN_VIEW_PARENTKEY_MESSAGE"
hint="COM_COMPONENTBUILDER_ADMIN_VIEW_PARENTKEY_HINT"
/>
<!-- Addnew Field. Type: Checkbox. (joomla) -->
@ -1474,7 +1474,7 @@
disabled="false"
required="false"
filter="STRING"
message="Error! Please add name here."
message="COM_COMPONENTBUILDER_ADMIN_VIEW_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_ADMIN_VIEW_NAME_HINT"
/>
<!-- Method Field. Type: Text. (joomla) -->
@ -1488,7 +1488,7 @@
class="text_area"
required="false"
filter="CMD"
message="Error! Please add controller method name here."
message="COM_COMPONENTBUILDER_ADMIN_VIEW_METHOD_MESSAGE"
hint="COM_COMPONENTBUILDER_ADMIN_VIEW_METHOD_HINT"
/>
<!-- Target Field. Type: List. (joomla) -->
@ -1739,7 +1739,7 @@
disabled="false"
required="false"
filter="STRING"
message="Error! Please add value name here."
message="COM_COMPONENTBUILDER_ADMIN_VIEW_VALUE_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_ADMIN_VIEW_VALUE_NAME_HINT"
/>
<!-- Task_name Field. Type: Text. (joomla) -->
@ -1755,7 +1755,7 @@
disabled="false"
required="false"
filter="WORD"
message="Error! Please add task name here."
message="COM_COMPONENTBUILDER_ADMIN_VIEW_TASK_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_ADMIN_VIEW_TASK_NAME_HINT"
/>
<!-- Input_default Field. Type: Text. (joomla) -->
@ -1772,7 +1772,7 @@
disabled="false"
required="false"
filter="STRING"
message="Error! Please add default input value here."
message="COM_COMPONENTBUILDER_ADMIN_VIEW_INPUT_DEFAULT_MESSAGE"
hint="COM_COMPONENTBUILDER_ADMIN_VIEW_INPUT_DEFAULT_HINT"
/>
<!-- Input_filter Field. Type: List. (joomla) -->
@ -1832,7 +1832,7 @@
disabled="false"
required="false"
filter="WORD"
message="Error! Please add method name here."
message="COM_COMPONENTBUILDER_ADMIN_VIEW_METHOD_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_ADMIN_VIEW_METHOD_NAME_HINT"
/>
<!-- User_check Field. Type: Checkbox. (joomla) -->

View File

@ -153,7 +153,7 @@
disabled="false"
required="false"
filter="STRING"
message="Error! Please add tab name here."
message="COM_COMPONENTBUILDER_COMPONENT_CONFIG_TABNAME_MESSAGE"
hint="COM_COMPONENTBUILDER_COMPONENT_CONFIG_TABNAME_HINT"
/>
</form>

View File

@ -125,7 +125,7 @@
disabled="false"
required="false"
filter="STRING"
message="Error! Please add name here."
message="COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_NAME_HINT"
/>
<!-- Name_code Field. Type: Text. (joomla) -->
@ -139,7 +139,7 @@
class="text_area"
required="false"
filter="CMD"
message="Error! Please add name in code here."
message="COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_NAME_CODE_MESSAGE"
hint="COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_NAME_CODE_HINT"
/>
<!-- Link Field. Type: Text. (joomla) -->
@ -155,7 +155,7 @@
disabled="false"
required="false"
filter="STRING"
message="Error! Please add menu link."
message="COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_LINK_MESSAGE"
hint="COM_COMPONENTBUILDER_COMPONENT_CUSTOM_ADMIN_MENUS_LINK_HINT"
/>
<!-- Icon Field. Type: Filelist. (joomla) -->

View File

@ -139,7 +139,7 @@
disabled="false"
required="false"
filter="STRING"
message="Error! Please add name here."
message="COM_COMPONENTBUILDER_COMPONENT_DASHBOARD_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_COMPONENT_DASHBOARD_NAME_HINT"
/>
<!-- Header Field. Type: Text. (joomla) -->
@ -155,7 +155,7 @@
disabled="false"
required="false"
filter="STRING"
message="Error! Please add header here."
message="COM_COMPONENTBUILDER_COMPONENT_DASHBOARD_HEADER_MESSAGE"
hint="COM_COMPONENTBUILDER_COMPONENT_DASHBOARD_HEADER_HINT"
/>
<!-- Html Field. Type: Textarea. (joomla) -->

View File

@ -142,7 +142,7 @@
disabled="false"
required="false"
filter="PATH"
message="Error! Please add target path."
message="COM_COMPONENTBUILDER_COMPONENT_FILES_FOLDERS_PATH_MESSAGE"
hint="COM_COMPONENTBUILDER_COMPONENT_FILES_FOLDERS_PATH_HINT"
/>
<!-- Notnew Field. Type: Checkbox. (joomla) -->
@ -193,7 +193,7 @@
disabled="false"
required="false"
filter="PATH"
message="Error! Please add target path."
message="COM_COMPONENTBUILDER_COMPONENT_FILES_FOLDERS_PATH_MESSAGE"
hint="COM_COMPONENTBUILDER_COMPONENT_FILES_FOLDERS_PATH_HINT"
/>
<!-- Rename Field. Type: Checkbox. (joomla) -->

View File

@ -126,7 +126,7 @@
disabled="false"
required="false"
filter="STRING"
message="Error! Please add some text here."
message="COM_COMPONENTBUILDER_COMPONENT_UPDATES_VERSION_MESSAGE"
hint="COM_COMPONENTBUILDER_COMPONENT_UPDATES_VERSION_HINT"
/>
<!-- Mysql Field. Type: Textarea. (joomla) -->
@ -154,7 +154,7 @@
required="false"
filter="raw"
validated="url"
message="Error! Please add url here."
message="COM_COMPONENTBUILDER_COMPONENT_UPDATES_URL_MESSAGE"
hint="COM_COMPONENTBUILDER_COMPONENT_UPDATES_URL_HINT"
/>
</form>

View File

@ -100,7 +100,7 @@
description="COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_SYSTEM_NAME_DESCRIPTION"
class="text_area"
filter="STRING"
message="Error! Please add some text here."
message="COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_SYSTEM_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_SYSTEM_NAME_HINT"
/>
<!-- Name Field. Type: Text. (joomla) -->
@ -116,7 +116,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add name here."
message="COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_NAME_HINT"
/>
<!-- Codename Field. Type: Text. (joomla) -->
@ -129,7 +129,7 @@
description="COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_CODENAME_DESCRIPTION"
class="text_area"
filter="CMD"
message="Error! Please add name in code here."
message="COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_CODENAME_MESSAGE"
hint="COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_CODENAME_HINT"
/>
<!-- Description Field. Type: Text. (joomla) -->
@ -145,7 +145,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add description here."
message="COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_DESCRIPTION_MESSAGE"
hint="COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_DESCRIPTION_HINT"
/>
<!-- Snippet Field. Type: Snippets. (custom) -->
@ -889,7 +889,7 @@
disabled="false"
required="false"
filter="STRING"
message="Error! Please add name here."
message="COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_NAME_HINT"
/>
<!-- Method Field. Type: Text. (joomla) -->
@ -903,7 +903,7 @@
class="text_area"
required="false"
filter="CMD"
message="Error! Please add controller method name here."
message="COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_METHOD_MESSAGE"
hint="COM_COMPONENTBUILDER_CUSTOM_ADMIN_VIEW_METHOD_HINT"
/>
<!-- Target Field. Type: List. (joomla) -->

View File

@ -113,7 +113,7 @@
class="text_area span12"
required="true"
filter="PATH"
message="Error! Please add target path."
message="COM_COMPONENTBUILDER_CUSTOM_CODE_PATH_MESSAGE"
hint="COM_COMPONENTBUILDER_CUSTOM_CODE_PATH_HINT"
/>
<!-- Target Field. Type: Radio. (joomla) -->
@ -170,7 +170,7 @@
class="text_area"
readonly="true"
filter="STRING"
message="Error! Please add some text here."
message="COM_COMPONENTBUILDER_CUSTOM_CODE_HASHTARGET_MESSAGE"
hint="COM_COMPONENTBUILDER_CUSTOM_CODE_HASHTARGET_HINT"
/>
<!-- Code Field. Type: Textarea. (joomla) -->
@ -197,7 +197,7 @@
class="text_area"
readonly="true"
filter="STRING"
message="Error! Please add some text here."
message="COM_COMPONENTBUILDER_CUSTOM_CODE_HASHENDTARGET_MESSAGE"
hint="COM_COMPONENTBUILDER_CUSTOM_CODE_HASHENDTARGET_HINT"
/>
<!-- To_line Field. Type: Text. (joomla) -->
@ -210,7 +210,7 @@
description="COM_COMPONENTBUILDER_CUSTOM_CODE_TO_LINE_DESCRIPTION"
class="text_area"
filter="FLOAT"
message="Error! Please add line number here."
message="COM_COMPONENTBUILDER_CUSTOM_CODE_TO_LINE_MESSAGE"
hint="COM_COMPONENTBUILDER_CUSTOM_CODE_TO_LINE_HINT"
onchange="if(!jQuery(this).val().match(/^\d+$/)){jQuery(this).val('')};"
/>
@ -236,7 +236,7 @@
description="COM_COMPONENTBUILDER_CUSTOM_CODE_FROM_LINE_DESCRIPTION"
class="text_area"
filter="FLOAT"
message="Error! Please add amount paid here."
message="COM_COMPONENTBUILDER_CUSTOM_CODE_FROM_LINE_MESSAGE"
hint="COM_COMPONENTBUILDER_CUSTOM_CODE_FROM_LINE_HINT"
onchange="if(!jQuery(this).val().match(/^\d+$/)){jQuery(this).val('')};"
/>
@ -250,7 +250,7 @@
description="COM_COMPONENTBUILDER_CUSTOM_CODE_SYSTEM_NAME_DESCRIPTION"
class="text_area"
filter="STRING"
message="Error! Please add some text here."
message="COM_COMPONENTBUILDER_CUSTOM_CODE_SYSTEM_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_CUSTOM_CODE_SYSTEM_NAME_HINT"
/>
<!-- Note_jcb_placeholder Field. Type: Note. A None Database Field. (joomla) -->

View File

@ -103,7 +103,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add name here."
message="COM_COMPONENTBUILDER_DYNAMIC_GET_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_DYNAMIC_GET_NAME_HINT"
/>
<!-- Main_source Field. Type: List. (joomla) -->
@ -262,7 +262,7 @@
disabled="false"
required="false"
filter="STRING"
message="Error! Please add state key here."
message="COM_COMPONENTBUILDER_DYNAMIC_GET_STATE_KEY_MESSAGE"
hint="COM_COMPONENTBUILDER_DYNAMIC_GET_STATE_KEY_HINT"
/>
<!-- Operator Field. Type: List. (joomla) -->
@ -313,7 +313,7 @@
disabled="false"
required="false"
filter="CMD"
message="Error! Please add table key here."
message="COM_COMPONENTBUILDER_DYNAMIC_GET_TABLE_KEY_MESSAGE"
hint="COM_COMPONENTBUILDER_DYNAMIC_GET_TABLE_KEY_HINT"
/>
</form>
@ -351,7 +351,7 @@
disabled="false"
required="false"
filter="CMD"
message="Error! Please add table key here."
message="COM_COMPONENTBUILDER_DYNAMIC_GET_TABLE_KEY_MESSAGE"
hint="COM_COMPONENTBUILDER_DYNAMIC_GET_TABLE_KEY_HINT"
/>
<!-- Operator Field. Type: List. (joomla) -->
@ -402,7 +402,7 @@
disabled="false"
required="false"
filter="CMD"
message="Error! Please add value key here."
message="COM_COMPONENTBUILDER_DYNAMIC_GET_VALUE_KEY_MESSAGE"
hint="COM_COMPONENTBUILDER_DYNAMIC_GET_VALUE_KEY_HINT"
/>
</form>
@ -445,7 +445,7 @@
disabled="false"
required="false"
filter="CMD"
message="Error! Please add table key here."
message="COM_COMPONENTBUILDER_DYNAMIC_GET_TABLE_KEY_MESSAGE"
hint="COM_COMPONENTBUILDER_DYNAMIC_GET_TABLE_KEY_HINT"
/>
<!-- Direction Field. Type: List. (joomla) -->
@ -499,7 +499,7 @@
disabled="false"
required="false"
filter="CMD"
message="Error! Please add variable name here."
message="COM_COMPONENTBUILDER_DYNAMIC_GET_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_DYNAMIC_GET_NAME_HINT"
/>
<!-- Key Field. Type: Text. (joomla) -->
@ -515,7 +515,7 @@
disabled="false"
required="false"
filter="STRING"
message="Error! Please add table as name here."
message="COM_COMPONENTBUILDER_DYNAMIC_GET_KEY_MESSAGE"
hint="COM_COMPONENTBUILDER_DYNAMIC_GET_KEY_HINT"
/>
<!-- As Field. Type: List. (joomla) -->
@ -852,7 +852,7 @@
disabled="false"
required="false"
filter="CMD"
message="Error! Please add field name here."
message="COM_COMPONENTBUILDER_DYNAMIC_GET_ON_FIELD_MESSAGE"
hint="COM_COMPONENTBUILDER_DYNAMIC_GET_ON_FIELD_HINT"
/>
<!-- Operator Field. Type: List. (joomla) -->
@ -903,7 +903,7 @@
disabled="false"
required="false"
filter="CMD"
message="Error! Please add field name here."
message="COM_COMPONENTBUILDER_DYNAMIC_GET_JOIN_FIELD_MESSAGE"
hint="COM_COMPONENTBUILDER_DYNAMIC_GET_JOIN_FIELD_HINT"
/>
<!-- Selection Field. Type: Textarea. (joomla) -->
@ -1014,7 +1014,7 @@
disabled="false"
required="true"
filter="WORD"
message="Error! Please add method name here."
message="COM_COMPONENTBUILDER_DYNAMIC_GET_GETCUSTOM_MESSAGE"
hint="COM_COMPONENTBUILDER_DYNAMIC_GET_GETCUSTOM_HINT"
/>
<!-- Php_before_getitems Field. Type: Textarea. (joomla) -->
@ -1253,7 +1253,7 @@
disabled="false"
required="false"
filter="CMD"
message="Error! Please add field name here."
message="COM_COMPONENTBUILDER_DYNAMIC_GET_ON_FIELD_MESSAGE"
hint="COM_COMPONENTBUILDER_DYNAMIC_GET_ON_FIELD_HINT"
/>
<!-- Operator Field. Type: List. (joomla) -->
@ -1304,7 +1304,7 @@
disabled="false"
required="false"
filter="CMD"
message="Error! Please add field name here."
message="COM_COMPONENTBUILDER_DYNAMIC_GET_JOIN_FIELD_MESSAGE"
hint="COM_COMPONENTBUILDER_DYNAMIC_GET_JOIN_FIELD_HINT"
/>
<!-- Selection Field. Type: Textarea. (joomla) -->

View File

@ -103,7 +103,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add name here."
message="COM_COMPONENTBUILDER_FIELD_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_FIELD_NAME_HINT"
/>
<!-- Fieldtype Field. Type: Fieldtypes. (custom) -->
@ -201,7 +201,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add other data length/values here."
message="COM_COMPONENTBUILDER_FIELD_DATALENGHT_OTHER_MESSAGE"
hint="COM_COMPONENTBUILDER_FIELD_DATALENGHT_OTHER_HINT"
/>
<!-- Datadefault Field. Type: List. (joomla) -->
@ -253,7 +253,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add other default here."
message="COM_COMPONENTBUILDER_FIELD_DATADEFAULT_OTHER_MESSAGE"
hint="COM_COMPONENTBUILDER_FIELD_DATADEFAULT_OTHER_HINT"
/>
<!-- Note_filter_information Field. Type: Note. A None Database Field. (joomla) -->

View File

@ -103,7 +103,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add name here."
message="COM_COMPONENTBUILDER_FIELDTYPE_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_FIELDTYPE_NAME_HINT"
/>
<!-- Note_on_fields Field. Type: Note. A None Database Field. (joomla) -->
@ -140,7 +140,7 @@
class="text_area"
required="true"
filter="HTML"
message="Error! Please add some short description here."
message="COM_COMPONENTBUILDER_FIELDTYPE_SHORT_DESCRIPTION_MESSAGE"
hint="COM_COMPONENTBUILDER_FIELDTYPE_SHORT_DESCRIPTION_HINT"
/>
<!-- Properties Field. Type: Subform. (joomla) -->
@ -167,7 +167,7 @@
disabled="false"
required="false"
filter="STRING"
message="Error! Please add name here."
message="COM_COMPONENTBUILDER_FIELDTYPE_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_FIELDTYPE_NAME_HINT"
/>
<!-- Example Field. Type: Text. (joomla) -->
@ -182,7 +182,7 @@
disabled="false"
required="false"
filter="STRING"
message="Error! Please add value/example here."
message="COM_COMPONENTBUILDER_FIELDTYPE_EXAMPLE_MESSAGE"
hint="COM_COMPONENTBUILDER_FIELDTYPE_EXAMPLE_HINT"
/>
<!-- Adjustable Field. Type: Checkbox. (joomla) -->

View File

@ -103,7 +103,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add name here."
message="COM_COMPONENTBUILDER_FTP_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_FTP_NAME_HINT"
/>
<!-- Note_ftp_signature Field. Type: Note. A None Database Field. (joomla) -->
@ -119,7 +119,7 @@
class="text_area span12"
required="true"
filter="STRING"
message="Error! Please add some text here."
message="COM_COMPONENTBUILDER_FTP_SIGNATURE_MESSAGE"
hint="COM_COMPONENTBUILDER_FTP_SIGNATURE_HINT"
autocomplete="off"
/>

View File

@ -103,7 +103,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add title here."
message="COM_COMPONENTBUILDER_HELP_DOCUMENT_TITLE_MESSAGE"
hint="COM_COMPONENTBUILDER_HELP_DOCUMENT_TITLE_HINT"
/>
<!-- Type Field. Type: List. (joomla) -->
@ -226,7 +226,7 @@
required="true"
filter="url"
validated="url"
message="Error! Please add url here."
message="COM_COMPONENTBUILDER_HELP_DOCUMENT_URL_MESSAGE"
hint="COM_COMPONENTBUILDER_HELP_DOCUMENT_URL_HINT"
/>
<!-- Not_required Field. Type: Hidden. (joomla) -->

View File

@ -118,7 +118,7 @@
description="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SYSTEM_NAME_DESCRIPTION"
class="text_area"
filter="STRING"
message="Error! Please add some text here."
message="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SYSTEM_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SYSTEM_NAME_HINT"
/>
<!-- Name_code Field. Type: Text. (joomla) -->
@ -132,7 +132,7 @@
class="text_area"
required="true"
filter="CMD"
message="Error! Please add name in code here."
message="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_NAME_CODE_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_NAME_CODE_HINT"
/>
<!-- Component_version Field. Type: Text. (joomla) -->
@ -147,7 +147,7 @@
class="text_area"
required="true"
filter="CMD"
message="Error! Please add version here."
message="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_COMPONENT_VERSION_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_COMPONENT_VERSION_HINT"
/>
<!-- Short_description Field. Type: Text. (joomla) -->
@ -161,7 +161,7 @@
class="text_area"
required="true"
filter="HTML"
message="Error! Please add some short description here."
message="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SHORT_DESCRIPTION_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_SHORT_DESCRIPTION_HINT"
/>
<!-- Companyname Field. Type: Text. (joomla) -->
@ -177,7 +177,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add company name here."
message="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_COMPANYNAME_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_COMPANYNAME_HINT"
/>
<!-- Author Field. Type: Text. (joomla) -->
@ -193,7 +193,7 @@
disabled="false"
required="true"
filter="HTML"
message="Error! Please add author name here."
message="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_AUTHOR_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_AUTHOR_HINT"
/>
<!-- Add_update_server Field. Type: Radio. (joomla) -->
@ -433,7 +433,7 @@
required="true"
filter="STRING"
validate="email"
message="Error! Please author email address here."
message="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EMAIL_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EMAIL_HINT"
/>
<!-- Add_php_helper_both Field. Type: Radio. (joomla) -->
@ -462,7 +462,7 @@
required="true"
filter="url"
validated="url"
message="Error! Please add website here."
message="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WEBSITE_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WEBSITE_HINT"
/>
<!-- Add_admin_event Field. Type: Radio. (joomla) -->
@ -568,7 +568,7 @@
description="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WHMCS_KEY_DESCRIPTION"
class="text_area"
filter="STRING"
message="Error! Please add some secret key here."
message="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WHMCS_KEY_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WHMCS_KEY_HINT"
/>
<!-- Php_postflight_install Field. Type: Textarea. (joomla) -->
@ -595,7 +595,7 @@
class="text_area"
filter="url"
validated="url"
message="Error! Please add website here."
message="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WHMCS_URL_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WHMCS_URL_HINT"
/>
<!-- Php_method_uninstall Field. Type: Textarea. (joomla) -->
@ -697,7 +697,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add component name here."
message="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_NAME_HINT"
/>
<!-- Buildcomp Field. Type: Radio. (joomla) -->
@ -936,7 +936,7 @@
class="text_area"
required="false"
filter="STRING"
message="Error! Please add export key here."
message="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_KEY_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_KEY_HINT"
/>
<!-- Add_php_postflight_update Field. Type: Radio. (joomla) -->
@ -965,7 +965,7 @@
required="false"
filter="url"
validated="url"
message="Error! Please add link here."
message="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_PACKAGE_LINK_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_PACKAGE_LINK_HINT"
/>
<!-- Add_php_method_uninstall Field. Type: Radio. (joomla) -->
@ -994,7 +994,7 @@
required="false"
filter="url"
validated="url"
message="Error! Please add link here."
message="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_BUY_LINK_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EXPORT_BUY_LINK_HINT"
/>
<!-- Add_sql Field. Type: Radio. (joomla) -->
@ -1054,7 +1054,7 @@
disabled="false"
required="false"
filter="STRING"
message="Error! Please add name here."
message="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_NAME_HINT"
/>
<!-- Title Field. Type: Text. (joomla) -->
@ -1070,7 +1070,7 @@
disabled="false"
required="false"
filter="STRING"
message="Error! Please add some text here."
message="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_TITLE_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_TITLE_HINT"
/>
<!-- Email Field. Type: Text. (joomla) -->
@ -1085,7 +1085,7 @@
required="false"
filter="STRING"
validate="email"
message="Error! Please add email address here."
message="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EMAIL_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_EMAIL_HINT"
/>
<!-- Website Field. Type: Url. (joomla) -->
@ -1100,7 +1100,7 @@
required="false"
filter="url"
validated="url"
message="Error! Please add website here."
message="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WEBSITE_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_WEBSITE_HINT"
/>
<!-- Use Field. Type: List. (joomla) -->
@ -1154,7 +1154,7 @@
class="text_area span12"
filter="url"
validated="url"
message="Error! Please add url here."
message="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_UPDATE_SERVER_MESSAGE"
hint="COM_COMPONENTBUILDER_JOOMLA_COMPONENT_UPDATE_SERVER_HINT"
/>
<!-- Emptycontributors Field. Type: Radio. (joomla) -->

View File

@ -103,7 +103,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add name here."
message="COM_COMPONENTBUILDER_LANGUAGE_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_LANGUAGE_NAME_HINT"
/>
<!-- Langtag Field. Type: Text. (joomla) -->
@ -116,7 +116,7 @@
description="COM_COMPONENTBUILDER_LANGUAGE_LANGTAG_DESCRIPTION"
class="text_area"
filter="STRING"
message="Error! Please add language tag here."
message="COM_COMPONENTBUILDER_LANGUAGE_LANGTAG_MESSAGE"
hint="COM_COMPONENTBUILDER_LANGUAGE_LANGTAG_HINT"
/>
</fieldset>

View File

@ -98,6 +98,7 @@
rows="4"
cols="5"
description="JFIELD_TITLE_DESC"
message="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_ENTRANSLATION_MESSAGE"
class="text_area span12"
filter="STRING"
hint="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_ENTRANSLATION_HINT"
@ -122,6 +123,7 @@
label="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_TRANSLATION_LABEL"
rows="4"
cols="20"
message="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_TRANSLATION_MESSAGE"
class="text_area translation_text_area"
filter="STRING"
hint="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_TRANSLATION_HINT"

View File

@ -103,7 +103,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add name here."
message="COM_COMPONENTBUILDER_LAYOUT_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_LAYOUT_NAME_HINT"
/>
<!-- Alias Field. Type: Text. (joomla) -->
@ -116,7 +116,7 @@
description="COM_COMPONENTBUILDER_LAYOUT_ALIAS_DESCRIPTION"
class="text_area"
filter="CMD"
message="Error! Please add name in code here."
message="COM_COMPONENTBUILDER_LAYOUT_ALIAS_MESSAGE"
hint="COM_COMPONENTBUILDER_LAYOUT_ALIAS_HINT"
/>
<!-- Description Field. Type: Text. (joomla) -->
@ -132,7 +132,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add description here."
message="COM_COMPONENTBUILDER_LAYOUT_DESCRIPTION_MESSAGE"
hint="COM_COMPONENTBUILDER_LAYOUT_DESCRIPTION_HINT"
/>
<!-- Dynamic_get Field. Type: Dynamicget. (custom) -->

View File

@ -100,7 +100,7 @@
description="COM_COMPONENTBUILDER_SITE_VIEW_SYSTEM_NAME_DESCRIPTION"
class="text_area"
filter="STRING"
message="Error! Please add some text here."
message="COM_COMPONENTBUILDER_SITE_VIEW_SYSTEM_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_SITE_VIEW_SYSTEM_NAME_HINT"
/>
<!-- Name Field. Type: Text. (joomla) -->
@ -116,7 +116,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add name here."
message="COM_COMPONENTBUILDER_SITE_VIEW_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_SITE_VIEW_NAME_HINT"
/>
<!-- Codename Field. Type: Text. (joomla) -->
@ -129,7 +129,7 @@
description="COM_COMPONENTBUILDER_SITE_VIEW_CODENAME_DESCRIPTION"
class="text_area"
filter="CMD"
message="Error! Please add name in code here."
message="COM_COMPONENTBUILDER_SITE_VIEW_CODENAME_MESSAGE"
hint="COM_COMPONENTBUILDER_SITE_VIEW_CODENAME_HINT"
/>
<!-- Description Field. Type: Text. (joomla) -->
@ -145,7 +145,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add description here."
message="COM_COMPONENTBUILDER_SITE_VIEW_DESCRIPTION_MESSAGE"
hint="COM_COMPONENTBUILDER_SITE_VIEW_DESCRIPTION_HINT"
/>
<!-- Snippet Field. Type: Snippets. (custom) -->
@ -425,7 +425,7 @@
disabled="false"
required="false"
filter="STRING"
message="Error! Please add value name here."
message="COM_COMPONENTBUILDER_SITE_VIEW_VALUE_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_SITE_VIEW_VALUE_NAME_HINT"
/>
<!-- Task_name Field. Type: Text. (joomla) -->
@ -441,7 +441,7 @@
disabled="false"
required="false"
filter="WORD"
message="Error! Please add task name here."
message="COM_COMPONENTBUILDER_SITE_VIEW_TASK_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_SITE_VIEW_TASK_NAME_HINT"
/>
<!-- Input_default Field. Type: Text. (joomla) -->
@ -458,7 +458,7 @@
disabled="false"
required="false"
filter="STRING"
message="Error! Please add default input value here."
message="COM_COMPONENTBUILDER_SITE_VIEW_INPUT_DEFAULT_MESSAGE"
hint="COM_COMPONENTBUILDER_SITE_VIEW_INPUT_DEFAULT_HINT"
/>
<!-- Input_filter Field. Type: List. (joomla) -->
@ -518,7 +518,7 @@
disabled="false"
required="false"
filter="WORD"
message="Error! Please add method name here."
message="COM_COMPONENTBUILDER_SITE_VIEW_METHOD_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_SITE_VIEW_METHOD_NAME_HINT"
/>
<!-- User_check Field. Type: Checkbox. (joomla) -->
@ -1041,7 +1041,7 @@
disabled="false"
required="false"
filter="STRING"
message="Error! Please add name here."
message="COM_COMPONENTBUILDER_SITE_VIEW_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_SITE_VIEW_NAME_HINT"
/>
<!-- Method Field. Type: Text. (joomla) -->
@ -1055,7 +1055,7 @@
class="text_area"
required="false"
filter="CMD"
message="Error! Please add controller method name here."
message="COM_COMPONENTBUILDER_SITE_VIEW_METHOD_MESSAGE"
hint="COM_COMPONENTBUILDER_SITE_VIEW_METHOD_HINT"
/>
<!-- Target Field. Type: List. (joomla) -->

View File

@ -103,7 +103,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add name here."
message="COM_COMPONENTBUILDER_SNIPPET_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_SNIPPET_NAME_HINT"
/>
<!-- Url Field. Type: Url. (joomla) -->
@ -118,7 +118,7 @@
required="true"
filter="url"
validated="url"
message="Error! Please add url here."
message="COM_COMPONENTBUILDER_SNIPPET_URL_MESSAGE"
hint="COM_COMPONENTBUILDER_SNIPPET_URL_HINT"
/>
<!-- Type Field. Type: List. (joomla) -->
@ -156,7 +156,7 @@
class="text_area"
required="true"
filter="HTML"
message="Error! Please add some short heading here."
message="COM_COMPONENTBUILDER_SNIPPET_HEADING_MESSAGE"
hint="COM_COMPONENTBUILDER_SNIPPET_HEADING_HINT"
/>
<!-- Description Field. Type: Textarea. (joomla) -->

View File

@ -103,7 +103,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add name here."
message="COM_COMPONENTBUILDER_TEMPLATE_NAME_MESSAGE"
hint="COM_COMPONENTBUILDER_TEMPLATE_NAME_HINT"
/>
<!-- Alias Field. Type: Text. (joomla) -->
@ -116,7 +116,7 @@
description="COM_COMPONENTBUILDER_TEMPLATE_ALIAS_DESCRIPTION"
class="text_area"
filter="CMD"
message="Error! Please add name in code here."
message="COM_COMPONENTBUILDER_TEMPLATE_ALIAS_MESSAGE"
hint="COM_COMPONENTBUILDER_TEMPLATE_ALIAS_HINT"
/>
<!-- Description Field. Type: Text. (joomla) -->
@ -132,7 +132,7 @@
disabled="false"
required="true"
filter="STRING"
message="Error! Please add description here."
message="COM_COMPONENTBUILDER_TEMPLATE_DESCRIPTION_MESSAGE"
hint="COM_COMPONENTBUILDER_TEMPLATE_DESCRIPTION_HINT"
/>
<!-- Snippet Field. Type: Snippets. (custom) -->

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<extension type="component" version="3.2" method="upgrade">
<name>COM_COMPONENTBUILDER</name>
<creationDate>6th November, 2017</creationDate>
<creationDate>8th November, 2017</creationDate>
<author>Llewellyn van der Merwe</author>
<authorEmail>joomla@vdm.io</authorEmail>
<authorUrl>http://vdm.bz/component-builder</authorUrl>

View File

@ -94,7 +94,7 @@ abstract class ComponentbuilderHelper
// load this for all
jimport('joomla.application');
}
/**
* Remove folders with files
*
@ -160,7 +160,7 @@ abstract class ComponentbuilderHelper
}
return false;
}
/**
* The dynamic builder of views, tables and fields
**/
@ -169,10 +169,16 @@ abstract class ComponentbuilderHelper
self::autoLoader('extrusion');
$extruder = new Extrusion($data);
}
/**
* The zipper method
**/
* The zipper method
*
* @param string $workingDIR The directory where the items must be zipped
* @param string $filepath The path to where the zip file must be placed
*
* @return bool true On success
*
*/
public static function zip($workingDIR, &$filepath)
{
// store the current joomla working directory
@ -213,30 +219,40 @@ abstract class ComponentbuilderHelper
}
return false;
}
/**
* Create file and write data to the file
**/
* Write a file to the server
*
* @param string $path The path and file name where to safe the data
* @param string $data The data to safe
*
* @return bool true On success
*
*/
public static function writeFile($path, $data)
{
$klaar = false;
// open the file
$fh = fopen($path, "w");
if (!is_resource($fh))
if (self::checkString($data))
{
return $klaar;
// open the file
$fh = fopen($path, "w");
if (!is_resource($fh))
{
return $klaar;
}
// write to the file
if (fwrite($fh, $data))
{
// has been done
$klaar = true;
}
// close file.
fclose($fh);
}
// write to the file
if (fwrite($fh, $data))
{
// has been done
$klaar = true;
}
// close file.
fclose($fh);
return $klaar;
}
public static function getFieldOptions($value, $type, $settings = array())
{
// Get a db connection.
@ -1157,8 +1173,7 @@ abstract class ComponentbuilderHelper
}
return self::$localSession[$key];
}
/**
* check if it is a new hash
**/
@ -1186,12 +1201,12 @@ abstract class ComponentbuilderHelper
/**
* Get the file path or url
*
* @param string $type The (url/path) type to return
* @param string $target The Params Target name (if set)
* @param string $fileType The kind of filename to generate (if not set no file name is generated)
* @param string $key The key to adjust the filename (if not set ignored)
* @param string $default The default path if not set in Params (fallback path)
* @param bool $createIfNotSet The switch to create the folder if not found
* @param string $type The (url/path) type to return
* @param string $target The Params Target name (if set)
* @param string $fileType The kind of filename to generate (if not set no file name is generated)
* @param string $key The key to adjust the filename (if not set ignored)
* @param string $default The default path if not set in Params (fallback path)
* @param bool $createIfNotSet The switch to create the folder if not found
*
* @return string On success the path or url is returned based on the type requested
*
@ -1207,7 +1222,7 @@ abstract class ComponentbuilderHelper
// check the file path (revert to default only of not a hidden file path)
if ('hiddenfilepath' !== $target && strpos($filePath, JPATH_SITE) === false)
{
$filePath = JPATH_SITE . '/images/';
$filePath = $default;
}
jimport('joomla.filesystem.folder');
// create the folder if it does not exist
@ -1217,24 +1232,29 @@ abstract class ComponentbuilderHelper
}
// setup the file name
$fileName = '';
// Get basic key
$basickey = 'Th!s_iS_n0t_sAfe_buT_b3tter_then_n0thiug';
if (method_exists(get_called_class(), "getCryptKey"))
{
$basickey = self::getCryptKey('basic', $basickey);
}
// check the key
if (!self::checkString($key))
{
$key = 'vDm';
}
// set the file name
if (self::checkString($fileType))
{
// Get basic key
$basickey = 'Th!s_iS_n0t_sAfe_buT_b3tter_then_n0thiug';
if (method_exists(get_called_class(), "getCryptKey"))
{
$basickey = self::getCryptKey('basic', $basickey);
}
// check the key
if (self::checkString($key))
{
$key = 'vDm';
}
// set the name
$fileName = trim(md5($type.$target.$basickey.$key) . '.' . trim($fileType, '.'));
}
else
{
$fileName = trim(md5($type.$target.$basickey.$key)) . '.txt';
}
// return the url
if ($type === 'url')
if ('url' === $type)
{
if (strpos($filePath, JPATH_SITE) !== false)
{
@ -1246,7 +1266,8 @@ abstract class ComponentbuilderHelper
}
// sanitize the path
return '/' . trim( $filePath, '/' ) . '/' . $fileName;
}
}
public static function jsonToString($value, $sperator = ", ", $table = null)
{