2016-01-30 20:28:43 +00:00
|
|
|
<?php
|
2021-03-05 03:08:47 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
2022-07-09 15:45:08 +00:00
|
|
|
* @author Llewellyn van der Merwe <https://dev.vdm.io>
|
|
|
|
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
2021-03-05 03:08:47 +00:00
|
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
2022-05-25 08:30:55 +00:00
|
|
|
use Joomla\CMS\MVC\View\HtmlView;
|
2021-03-08 22:36:30 +00:00
|
|
|
use Joomla\CMS\Filesystem\File;
|
2023-02-12 19:15:41 +00:00
|
|
|
use Joomla\CMS\Form\Form;
|
2021-03-08 22:36:30 +00:00
|
|
|
|
2021-03-05 03:08:47 +00:00
|
|
|
/**
|
2022-05-25 08:30:55 +00:00
|
|
|
* Componentbuilder Html View class for the Compiler
|
2021-03-05 03:08:47 +00:00
|
|
|
*/
|
2022-05-25 08:30:55 +00:00
|
|
|
class ComponentbuilderViewCompiler extends HtmlView
|
2021-03-05 03:08:47 +00:00
|
|
|
{
|
|
|
|
// Overwriting JView display method
|
|
|
|
function display($tpl = null)
|
|
|
|
{
|
|
|
|
// get component params
|
|
|
|
$this->params = JComponentHelper::getParams('com_componentbuilder');
|
|
|
|
// get the application
|
|
|
|
$this->app = JFactory::getApplication();
|
|
|
|
// get the user object
|
|
|
|
$this->user = JFactory::getUser();
|
|
|
|
// get global action permissions
|
2017-12-15 01:10:10 +00:00
|
|
|
$this->canDo = ComponentbuilderHelper::getActions('compiler');
|
2017-02-02 11:54:07 +00:00
|
|
|
// Initialise variables.
|
2017-12-15 01:10:10 +00:00
|
|
|
$this->items = $this->get('Items');
|
2016-01-30 20:28:43 +00:00
|
|
|
if ($this->getLayout() !== 'modal')
|
|
|
|
{
|
|
|
|
// Include helper submenu
|
|
|
|
ComponentbuilderHelper::addSubmenu('compiler');
|
2017-02-02 11:54:07 +00:00
|
|
|
JHtmlSidebar::setAction('index.php?option=com_componentbuilder&view=compiler');
|
2016-01-30 20:28:43 +00:00
|
|
|
$this->sidebar = JHtmlSidebar::render();
|
|
|
|
}
|
2022-10-20 14:40:18 +00:00
|
|
|
// get the success message if set
|
2021-03-04 06:13:05 +00:00
|
|
|
$this->SuccessMessage = $this->app->getUserState('com_componentbuilder.success_message', false);
|
2022-10-20 14:40:18 +00:00
|
|
|
|
|
|
|
// get active components
|
2021-02-19 23:53:14 +00:00
|
|
|
$this->Components = $this->get('Components');
|
2022-10-20 14:40:18 +00:00
|
|
|
|
|
|
|
// get the needed form fields
|
2023-02-12 19:15:41 +00:00
|
|
|
$this->form = $this->getDynamicForm();
|
2022-10-20 14:40:18 +00:00
|
|
|
|
2021-02-19 23:53:14 +00:00
|
|
|
// set the compiler artwork from global settings
|
|
|
|
$this->builder_gif_size = $this->params->get('builder_gif_size', '480-272');
|
2022-10-20 14:40:18 +00:00
|
|
|
|
2021-02-19 23:53:14 +00:00
|
|
|
// only run these checks if he has access
|
|
|
|
if ($this->canDo->get('compiler.compiler_animations'))
|
|
|
|
{
|
|
|
|
// if the new artwork is not being targeted hide download option of artwork
|
|
|
|
if ('480-540' !== $this->builder_gif_size)
|
|
|
|
{
|
|
|
|
$this->canDo->set('compiler.compiler_animations', false);
|
|
|
|
}
|
|
|
|
// we count of all the files are already there
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// get all the gif files in the gif folder
|
|
|
|
$all_gifs = scandir(JPATH_ROOT . "/administrator/components/com_componentbuilder/assets/images/builder-gif");
|
|
|
|
// check if we have any values
|
|
|
|
if (ComponentbuilderHelper::checkArray($all_gifs))
|
|
|
|
{
|
|
|
|
// count number of files but remove the 2 dot values
|
|
|
|
$num_gifs = count($all_gifs) - 2;
|
|
|
|
// if we have more or the same number of files that are in the array, the we hide the download option
|
|
|
|
if ($num_gifs >= ComponentbuilderHelper::getDynamicContentSize('builder-gif', '480-540'))
|
|
|
|
{
|
|
|
|
$this->canDo->set('compiler.compiler_animations', false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-02 11:54:07 +00:00
|
|
|
|
|
|
|
// We don't need toolbar in the modal window.
|
|
|
|
if ($this->getLayout() !== 'modal')
|
|
|
|
{
|
|
|
|
// add the tool bar
|
|
|
|
$this->addToolBar();
|
|
|
|
}
|
|
|
|
|
|
|
|
// set the document
|
|
|
|
$this->setDocument();
|
|
|
|
|
2017-10-14 17:18:29 +00:00
|
|
|
// Check for errors.
|
|
|
|
if (count($errors = $this->get('Errors')))
|
|
|
|
{
|
2019-09-05 21:12:56 +00:00
|
|
|
throw new Exception(implode(PHP_EOL, $errors), 500);
|
2017-10-14 17:18:29 +00:00
|
|
|
}
|
|
|
|
|
2021-03-05 03:08:47 +00:00
|
|
|
parent::display($tpl);
|
2017-02-02 11:54:07 +00:00
|
|
|
}
|
|
|
|
|
2020-05-29 01:01:07 +00:00
|
|
|
// These are subform layouts used in JCB
|
2021-02-19 00:35:54 +00:00
|
|
|
// JLayoutHelper::render('sectionjcb', [?]); // added to ensure the layout are loaded
|
|
|
|
// JLayoutHelper::render('repeatablejcb', [?]); // added to ensure the layout are loaded
|
2020-05-29 01:01:07 +00:00
|
|
|
|
2022-10-20 14:40:18 +00:00
|
|
|
/**
|
|
|
|
* Get the dynamic build form fields needed on the page
|
|
|
|
*
|
2023-02-12 19:15:41 +00:00
|
|
|
* @return Form|null The form fields
|
2022-10-20 14:40:18 +00:00
|
|
|
*
|
|
|
|
* @since 3.2.0
|
|
|
|
*/
|
2023-02-12 19:15:41 +00:00
|
|
|
public function getDynamicForm(): ?Form
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2018-07-31 02:20:11 +00:00
|
|
|
if(ComponentbuilderHelper::checkArray($this->Components))
|
|
|
|
{
|
2018-04-08 06:12:18 +00:00
|
|
|
// start the form
|
2023-02-12 19:15:41 +00:00
|
|
|
$form = new Form('Builder');
|
|
|
|
|
|
|
|
$form->load('<form
|
|
|
|
addrulepath="/administrator/components/com_componentbuilder/models/rules"
|
|
|
|
addfieldpath="/administrator/components/com_componentbuilder/models/fields">
|
|
|
|
<fieldset name="builder"></fieldset>
|
|
|
|
<fieldset name="advanced"></fieldset>
|
|
|
|
</form>');
|
|
|
|
|
2018-04-08 06:12:18 +00:00
|
|
|
// sales attributes
|
2023-02-12 19:15:41 +00:00
|
|
|
$attributes = [
|
2018-04-08 06:12:18 +00:00
|
|
|
'type' => 'radio',
|
|
|
|
'name' => 'backup',
|
|
|
|
'label' => 'COM_COMPONENTBUILDER_ADD_TO_BACKUP_FOLDER_AMP_SALES_SERVER_SMALLIF_SETSMALL',
|
|
|
|
'class' => 'btn-group btn-group-yesno',
|
|
|
|
'description' => 'COM_COMPONENTBUILDER_SHOULD_THE_ZIPPED_PACKAGE_OF_THE_COMPONENT_BE_MOVED_TO_THE_LOCAL_BACKUP_AND_REMOTE_SALES_SERVER_THIS_IS_ONLY_APPLICABLE_IF_THIS_COMPONENT_HAS_THOSE_VALUES_SET',
|
2023-02-12 19:15:41 +00:00
|
|
|
'default' => '0'];
|
2018-04-08 06:12:18 +00:00
|
|
|
// set the sales options
|
2023-02-12 19:15:41 +00:00
|
|
|
$options = [
|
2018-04-08 06:12:18 +00:00
|
|
|
'1' => 'COM_COMPONENTBUILDER_YES',
|
2023-02-12 19:15:41 +00:00
|
|
|
'0' => 'COM_COMPONENTBUILDER_NO'];
|
|
|
|
|
2018-04-08 06:12:18 +00:00
|
|
|
// add to form
|
2023-02-12 19:15:41 +00:00
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes, $options);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'builder');
|
|
|
|
}
|
|
|
|
|
2018-04-08 06:12:18 +00:00
|
|
|
// repository attributes
|
2023-02-12 19:15:41 +00:00
|
|
|
$attributes = [
|
2018-04-08 06:12:18 +00:00
|
|
|
'type' => 'radio',
|
|
|
|
'name' => 'repository',
|
|
|
|
'label' => 'COM_COMPONENTBUILDER_ADD_TO_REPOSITORY_FOLDER',
|
|
|
|
'class' => 'btn-group btn-group-yesno',
|
|
|
|
'description' => 'COM_COMPONENTBUILDER_SHOULD_THE_COMPONENT_BE_MOVED_TO_YOUR_LOCAL_REPOSITORY_FOLDER',
|
2023-02-12 19:15:41 +00:00
|
|
|
'default' => '1'];
|
2018-04-08 06:12:18 +00:00
|
|
|
// start the repository options
|
2023-02-12 19:15:41 +00:00
|
|
|
$options = [
|
2018-04-08 06:12:18 +00:00
|
|
|
'1' => 'COM_COMPONENTBUILDER_YES',
|
2023-02-12 19:15:41 +00:00
|
|
|
'0' => 'COM_COMPONENTBUILDER_NO'];
|
|
|
|
|
2018-04-08 06:12:18 +00:00
|
|
|
// add to form
|
2023-02-12 19:15:41 +00:00
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes, $options);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'builder');
|
|
|
|
}
|
|
|
|
|
2018-04-08 06:12:18 +00:00
|
|
|
// placeholders attributes
|
2023-02-12 19:15:41 +00:00
|
|
|
$attributes = [
|
2018-04-08 06:12:18 +00:00
|
|
|
'type' => 'radio',
|
2022-08-30 15:28:41 +00:00
|
|
|
'name' => 'add_placeholders',
|
2018-04-08 06:12:18 +00:00
|
|
|
'label' => 'COM_COMPONENTBUILDER_ADD_CUSTOM_CODE_PLACEHOLDERS',
|
|
|
|
'class' => 'btn-group btn-group-yesno',
|
|
|
|
'description' => 'COM_COMPONENTBUILDER_SHOULD_JCB_INSERT_THE_CUSTOM_CODE_PLACEHOLDERS_THIS_IS_ONLY_APPLICABLE_IF_THIS_COMPONENT_HAS_CUSTOM_CODE',
|
2023-02-12 19:15:41 +00:00
|
|
|
'default' => '2'];
|
2018-04-08 06:12:18 +00:00
|
|
|
// start the placeholders options
|
2023-02-12 19:15:41 +00:00
|
|
|
$options = [
|
2018-04-08 06:12:18 +00:00
|
|
|
'2' => 'COM_COMPONENTBUILDER_GLOBAL',
|
|
|
|
'1' => 'COM_COMPONENTBUILDER_YES',
|
2023-02-12 19:15:41 +00:00
|
|
|
'0' => 'COM_COMPONENTBUILDER_NO'];
|
|
|
|
|
2018-04-08 06:12:18 +00:00
|
|
|
// add to form
|
2023-02-12 19:15:41 +00:00
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes, $options);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'builder');
|
|
|
|
}
|
|
|
|
|
2018-04-08 06:12:18 +00:00
|
|
|
// debuglinenr attributes
|
2023-02-12 19:15:41 +00:00
|
|
|
$attributes = [
|
2018-04-08 06:12:18 +00:00
|
|
|
'type' => 'radio',
|
2022-08-30 15:28:41 +00:00
|
|
|
'name' => 'debug_line_nr',
|
2018-04-08 06:12:18 +00:00
|
|
|
'label' => 'COM_COMPONENTBUILDER_DEBUG_LINE_NUMBERS',
|
|
|
|
'class' => 'btn-group btn-group-yesno',
|
|
|
|
'description' => 'COM_COMPONENTBUILDER_ADD_CORRESPONDING_LINE_NUMBERS_TO_THE_DYNAMIC_COMMENTS_SO_TO_SEE_WHERE_IN_THE_COMPILER_THE_LINES_OF_CODE_WAS_BUILD_THIS_WILL_HELP_IF_YOU_NEED_TO_GET_MORE_TECHNICAL_WITH_AN_ISSUE_ON_GITHUB_OR_EVEN_FOR_YOUR_OWN_DEBUGGING',
|
2023-02-12 19:15:41 +00:00
|
|
|
'default' => '2'];
|
|
|
|
$options = [
|
2018-04-08 06:12:18 +00:00
|
|
|
'2' => 'COM_COMPONENTBUILDER_GLOBAL',
|
|
|
|
'1' => 'COM_COMPONENTBUILDER_YES',
|
2023-02-12 19:15:41 +00:00
|
|
|
'0' => 'COM_COMPONENTBUILDER_NO'];
|
|
|
|
|
2018-04-08 06:12:18 +00:00
|
|
|
// add to form
|
2023-02-12 19:15:41 +00:00
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes, $options);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'builder');
|
|
|
|
}
|
|
|
|
|
2018-04-18 19:11:14 +00:00
|
|
|
// minify attributes
|
2023-02-12 19:15:41 +00:00
|
|
|
$attributes = [
|
2018-04-18 19:11:14 +00:00
|
|
|
'type' => 'radio',
|
|
|
|
'name' => 'minify',
|
|
|
|
'label' => 'COM_COMPONENTBUILDER_MINIFY_JAVASCRIPT',
|
|
|
|
'class' => 'btn-group btn-group-yesno',
|
|
|
|
'description' => 'COM_COMPONENTBUILDER_SHOULD_THE_JAVASCRIPT_BE_MINIFIED_IN_THE_COMPONENT',
|
2023-02-12 19:15:41 +00:00
|
|
|
'default' => '2'];
|
|
|
|
$options = [
|
2018-04-18 19:11:14 +00:00
|
|
|
'2' => 'COM_COMPONENTBUILDER_GLOBAL',
|
|
|
|
'1' => 'COM_COMPONENTBUILDER_YES',
|
2023-02-12 19:15:41 +00:00
|
|
|
'0' => 'COM_COMPONENTBUILDER_NO'];
|
|
|
|
|
2018-04-18 19:11:14 +00:00
|
|
|
// add to form
|
2023-02-12 19:15:41 +00:00
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes, $options);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'builder');
|
|
|
|
}
|
|
|
|
|
2022-05-16 04:25:03 +00:00
|
|
|
// powers attributes
|
2023-02-12 19:15:41 +00:00
|
|
|
$attributes = [
|
2022-05-16 04:25:03 +00:00
|
|
|
'type' => 'radio',
|
|
|
|
'name' => 'powers',
|
|
|
|
'label' => 'COM_COMPONENTBUILDER_ADD_POWERS',
|
|
|
|
'class' => 'btn-group btn-group-yesno',
|
|
|
|
'description' => 'COM_COMPONENTBUILDER_SHOULD_JCB_ADD_ANY_POWERS_THAT_ARE_CONNECTED_TO_THIS_COMPONENT_THIS_MAY_BE_HELPFUL_IF_YOU_ARE_LOADING_POWERS_VIA_ANOTHER_COMPONENT_AND_WOULD_LIKE_TO_AVOID_ADDING_IT_TO_BOTH_JUST_REMEMBER_THAT_IN_THIS_CASE_YOU_NEED_TO_LOAD_THE_POWERS_VIA_A_PLUGIN',
|
2023-02-12 19:15:41 +00:00
|
|
|
'default' => '2'];
|
|
|
|
$options = [
|
2022-05-16 04:25:03 +00:00
|
|
|
'2' => 'COM_COMPONENTBUILDER_GLOBAL',
|
|
|
|
'1' => 'COM_COMPONENTBUILDER_YES',
|
2023-02-12 19:15:41 +00:00
|
|
|
'0' => 'COM_COMPONENTBUILDER_NO'];
|
|
|
|
|
2022-05-16 04:25:03 +00:00
|
|
|
// add to form
|
2023-02-12 19:15:41 +00:00
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes, $options);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'builder');
|
|
|
|
}
|
|
|
|
|
2018-04-08 06:12:18 +00:00
|
|
|
// component attributes
|
2023-02-12 19:15:41 +00:00
|
|
|
$attributes = [
|
2018-04-08 06:12:18 +00:00
|
|
|
'type' => 'list',
|
2022-08-30 15:28:41 +00:00
|
|
|
'name' => 'component_id',
|
2018-04-08 06:12:18 +00:00
|
|
|
'label' => 'COM_COMPONENTBUILDER_COMPONENTS',
|
|
|
|
'class' => 'list_class',
|
|
|
|
'description' => 'COM_COMPONENTBUILDER_SELECT_THE_COMPONENT_TO_COMPILE',
|
2023-02-12 19:15:41 +00:00
|
|
|
'required' => 'true'];
|
2018-04-08 06:12:18 +00:00
|
|
|
// start the component options
|
2023-02-12 19:15:41 +00:00
|
|
|
$options = [];
|
2018-07-31 02:20:11 +00:00
|
|
|
$options[''] = 'COM_COMPONENTBUILDER__SELECT_COMPONENT_';
|
2018-04-08 06:12:18 +00:00
|
|
|
// load component options from array
|
2021-05-04 20:34:23 +00:00
|
|
|
foreach($this->Components as $component)
|
2018-04-08 06:12:18 +00:00
|
|
|
{
|
2021-05-04 20:34:23 +00:00
|
|
|
$options[(int) $component->id] = $this->escape($component->name);
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
2023-02-12 19:15:41 +00:00
|
|
|
|
|
|
|
// add to form
|
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes, $options);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'builder');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advanced Options
|
|
|
|
$attributes = [
|
|
|
|
'type' => 'radio',
|
|
|
|
'name' => 'show_advanced_options',
|
|
|
|
'label' => 'COM_COMPONENTBUILDER_SHOW_ADVANCED_OPTIONS',
|
|
|
|
'class' => 'btn-group btn-group-yesno',
|
|
|
|
'description' => 'COM_COMPONENTBUILDER_WOULD_YOU_LIKE_TO_SEE_THE_ADVANCED_COMPILER_OPTIONS',
|
|
|
|
'default' => '0'];
|
|
|
|
// start the advanced options switch
|
|
|
|
$options = [
|
|
|
|
'1' => 'COM_COMPONENTBUILDER_YES',
|
|
|
|
'0' => 'COM_COMPONENTBUILDER_NO'];
|
|
|
|
|
|
|
|
// add to form
|
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes, $options);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'builder');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advanced Options note attributes
|
|
|
|
$attributes = [
|
|
|
|
'type' => 'note',
|
|
|
|
'name' => 'show_advanced_options_note',
|
|
|
|
'label' => "COM_COMPONENTBUILDER_ADVANCED_OPTIONS",
|
|
|
|
'heading' => 'h3',
|
|
|
|
'showon' => 'show_advanced_options:1'];
|
|
|
|
|
|
|
|
// add to form
|
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'advanced');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Joomla Versions attributes
|
|
|
|
$attributes = [
|
|
|
|
'type' => 'radio',
|
|
|
|
'name' => 'joomla_version_donations',
|
|
|
|
'label' => 'COM_COMPONENTBUILDER_JOOMLA_VERSION',
|
|
|
|
'class' => 'btn-group btn-group-yesno',
|
|
|
|
'description' => 'COM_COMPONENTBUILDER_WHAT_VERSION_OF_JOOMLA_WOULD_YOU_LIKE_TO_TARGET',
|
|
|
|
'default' => '3',
|
|
|
|
'showon' => 'show_advanced_options:1'];
|
|
|
|
// start the joomla versions options
|
|
|
|
$options = [
|
|
|
|
'3' => 'COM_COMPONENTBUILDER_JOOMLA_THREE',
|
|
|
|
'4' => 'COM_COMPONENTBUILDER_JOOMLA_FOUR'];
|
|
|
|
|
|
|
|
// add to form
|
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes, $options);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'advanced');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Joomla Version 3 attributes
|
|
|
|
$attributes = [
|
|
|
|
'type' => 'note',
|
|
|
|
'name' => 'joomla_version_note_three',
|
|
|
|
'description' => 'COM_COMPONENTBUILDER_YOUR_COMPONENT_WILL_BE_COMPILED_TO_WORK_IN_JOOMLA_THREE',
|
|
|
|
'class' => 'alert alert-success',
|
|
|
|
'showon' => 'show_advanced_options:1[AND]joomla_version_donations:3'];
|
|
|
|
|
|
|
|
// add to form
|
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'advanced');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Joomla Version 4 attributes
|
|
|
|
$attributes = [
|
|
|
|
'type' => 'note',
|
|
|
|
'name' => 'joomla_version_note_four',
|
|
|
|
'description' => 'COM_COMPONENTBUILDER_JCB_IS_NOT_YET_FULLY_READY_FOR_JOOMLA_FOUR_BUT_WITH_YOUR_HELP_WE_CAN_MAKE_THE_TRANSITION_FASTER_SHOW_YOUR_SUPPORT_BY_MAKING_A_DONATION_TODAY_AND_HELP_US_BRING_JCB_TO_THE_NEXT_LEVELBR_BR_BYOUR_COMPONENT_WILL_STILL_ONLY_BE_COMPILED_FOR_JOOMLA_THREEB',
|
|
|
|
'class' => 'alert alert-info',
|
|
|
|
'showon' => 'show_advanced_options:1[AND]joomla_version_donations:4'];
|
|
|
|
|
|
|
|
// add to form
|
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'advanced');
|
|
|
|
}
|
|
|
|
|
2023-05-02 00:10:55 +00:00
|
|
|
// powers repository attributes
|
|
|
|
$attributes = [
|
|
|
|
'type' => 'radio',
|
|
|
|
'name' => 'powers_repository',
|
|
|
|
'label' => 'COM_COMPONENTBUILDER_ACTIVATE_SUPER_POWERS',
|
|
|
|
'class' => 'btn-group btn-group-yesno',
|
|
|
|
'description' => 'COM_COMPONENTBUILDER_THIS_ADDS_POWERS_TO_A_LOCAL_REPOSITORY_FOLDER_ALL_BAPPROVEDB_POWERS_LINKED_TO_THIS_COMPONENT_WILL_BE_MOVED_TO_YOUR_BLOCALB_POWERS_REPOSITORY_FOLDER_INTO_THEIR_SELECTIVE_TARGET_PATHS_THIS_LOCAL_FOLDER_PATH_MUST_BE_SET_IN_THE_GLOBAL_OPTIONS_OF_JCB_UNDER_THE_BSUPER_POWERB_TAB',
|
|
|
|
'default' => '2',
|
|
|
|
'showon' => 'show_advanced_options:1'];
|
|
|
|
// start the repository options
|
|
|
|
$options = [
|
|
|
|
'2' => 'COM_COMPONENTBUILDER_GLOBAL',
|
|
|
|
'1' => 'COM_COMPONENTBUILDER_YES',
|
|
|
|
'0' => 'COM_COMPONENTBUILDER_NO'];
|
|
|
|
|
|
|
|
// add to form
|
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes, $options);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'advanced');
|
|
|
|
}
|
|
|
|
|
|
|
|
// powers local path to repositories attributes
|
|
|
|
$attributes = [
|
|
|
|
'type' => 'text',
|
|
|
|
'name' => 'local_powers_repository_path',
|
|
|
|
'label' => 'COM_COMPONENTBUILDER_LOCAL_POWERS_REPOSITORY_PATH',
|
|
|
|
'class' => 'btn-group btn-group-yesno',
|
|
|
|
'description' => 'COM_COMPONENTBUILDER_HERE_YOU_CAN_SET_THE_PATH_TO_THE_SUPER_POWERS_LOCAL_REPOSITORY_FOLDER_WHERE_BLAYERCOREB_AND_ALL_TARGETED_BLAYEROWNB_SUB_PATHS_WILL_BE_PLACED_WITH_THEIR_SELECTIVE_BSWITCHAPPROVEDB_POWERS',
|
|
|
|
'default' => $this->params->get('local_powers_repository_path', ''),
|
|
|
|
'showon' => 'show_advanced_options:1[AND]powers_repository:1'];
|
|
|
|
|
|
|
|
// add to form
|
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'advanced');
|
|
|
|
}
|
|
|
|
|
2023-02-12 19:15:41 +00:00
|
|
|
// Indentation attributes
|
|
|
|
$attributes = [
|
|
|
|
'type' => 'radio',
|
|
|
|
'name' => 'indentation_value',
|
|
|
|
'label' => 'COM_COMPONENTBUILDER_INDENTATION_OPTIONS',
|
|
|
|
'class' => 'btn-group btn-group-yesno',
|
|
|
|
'description' => 'COM_COMPONENTBUILDER_WHICH_TYPE_OF_INDENTATION_WOULD_YOU_LIKE_TO_USE_PLEASE_NOTE_THAT_THIS_DOES_NOT_YET_IMPACT_THE_STATIC_TEMPLATES',
|
|
|
|
'default' => '1',
|
|
|
|
'showon' => 'show_advanced_options:1'];
|
|
|
|
|
|
|
|
// start the indentation options
|
|
|
|
$options = [
|
|
|
|
'1' => 'COM_COMPONENTBUILDER_TAB',
|
|
|
|
'2' => 'COM_COMPONENTBUILDER_TWO_SPACES',
|
|
|
|
'4' => 'COM_COMPONENTBUILDER_FOUR_SPACES'];
|
|
|
|
|
2018-04-08 06:12:18 +00:00
|
|
|
// add to form
|
2023-02-12 19:15:41 +00:00
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes, $options);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'advanced');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build date attributes
|
|
|
|
$attributes = [
|
|
|
|
'type' => 'radio',
|
|
|
|
'name' => 'add_build_date',
|
|
|
|
'label' => 'COM_COMPONENTBUILDER_BUILD_DATE',
|
|
|
|
'class' => 'btn-group btn-group-yesno',
|
|
|
|
'description' => 'COM_COMPONENTBUILDER_WOULD_YOU_LIKE_TO_OVERRIDE_THE_BUILD_DATE',
|
|
|
|
'default' => '1',
|
|
|
|
'showon' => 'show_advanced_options:1'];
|
|
|
|
// start the build date options
|
|
|
|
$options = [
|
|
|
|
'1' => 'COM_COMPONENTBUILDER_DEFAULT',
|
|
|
|
'2' => 'COM_COMPONENTBUILDER_MANUAL',
|
|
|
|
'3' => 'COM_COMPONENTBUILDER_COMPONENT'];
|
|
|
|
|
|
|
|
// add to form
|
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes, $options);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'advanced');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build date note attributes
|
|
|
|
$attributes = [
|
|
|
|
'type' => 'note',
|
|
|
|
'name' => 'add_build_date_note_two',
|
|
|
|
'description' => 'COM_COMPONENTBUILDER_ALLOWS_YOU_TO_OVERRIDE_THE_BUILD_DATE_BY_SELECTING_A_DATE_MANUALLY_FROM_THE_CALENDER',
|
|
|
|
'class' => 'alert alert-info',
|
|
|
|
'showon' => 'show_advanced_options:1[AND]add_build_date:2'];
|
|
|
|
|
|
|
|
// add to form
|
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'advanced');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build date note attributes
|
|
|
|
$attributes = [
|
|
|
|
'type' => 'note',
|
|
|
|
'name' => 'add_build_date_note_three',
|
|
|
|
'description' => "COM_COMPONENTBUILDER_THE_COMPONENTS_LAST_MODIFIED_DATE_WILL_BE_USED",
|
|
|
|
'class' => 'alert alert-info',
|
|
|
|
'showon' => 'show_advanced_options:1[AND]add_build_date:3'];
|
|
|
|
|
|
|
|
// add to form
|
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'advanced');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build date calendar attributes
|
|
|
|
$attributes = [
|
|
|
|
'type' => 'calendar',
|
|
|
|
'name' => 'build_date',
|
|
|
|
'label' => 'COM_COMPONENTBUILDER_SELECT_BUILD_DATE',
|
|
|
|
'format' => '%Y-%m-%d',
|
|
|
|
'filter' => 'user_utc',
|
|
|
|
'default' => 'now',
|
|
|
|
'size' => '22',
|
|
|
|
'showon' => 'show_advanced_options:1[AND]add_build_date:2'];
|
|
|
|
|
|
|
|
// add to form
|
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'advanced');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build date note attributes
|
|
|
|
$attributes = [
|
|
|
|
'type' => 'note',
|
|
|
|
'name' => 'donations_note',
|
|
|
|
'label' => "COM_COMPONENTBUILDER_DONATIONS",
|
|
|
|
'description' => $this->getSupportMessage(),
|
|
|
|
'class' => 'alert alert-success',
|
|
|
|
'heading' => 'h1',
|
|
|
|
'showon' => 'show_advanced_options:1'];
|
|
|
|
|
|
|
|
// add to form
|
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'advanced');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build date note line attributes
|
|
|
|
$attributes = [
|
|
|
|
'type' => 'note',
|
|
|
|
'name' => 'donations_note_line',
|
|
|
|
'description' => '<hr />',
|
|
|
|
'showon' => 'show_advanced_options:1'];
|
|
|
|
|
|
|
|
// add to form
|
|
|
|
$xml = ComponentbuilderHelper::getFieldXML($attributes);
|
|
|
|
if ($xml instanceof SimpleXMLElement)
|
|
|
|
{
|
|
|
|
$form->setField($xml, null, true, 'advanced');
|
|
|
|
}
|
2018-04-08 06:12:18 +00:00
|
|
|
|
|
|
|
// return the form array
|
|
|
|
return $form;
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
2022-10-20 14:40:18 +00:00
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
2023-02-12 19:15:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the dynamic support request/gratitude message
|
|
|
|
*
|
|
|
|
* @return string The support message
|
|
|
|
*
|
|
|
|
* @since 3.2.0
|
|
|
|
*/
|
|
|
|
protected function getSupportMessage(): string
|
|
|
|
{
|
|
|
|
return JLayoutHelper::render('jcbsupportmessage', []);
|
|
|
|
}
|
2022-10-20 14:40:18 +00:00
|
|
|
|
2021-03-05 03:08:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepares the document
|
|
|
|
*/
|
|
|
|
protected function setDocument()
|
2017-02-02 11:54:07 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
// always make sure jquery is loaded.
|
|
|
|
JHtml::_('jquery.framework');
|
|
|
|
// Load the header checker class.
|
|
|
|
require_once( JPATH_COMPONENT_ADMINISTRATOR.'/helpers/headercheck.php' );
|
|
|
|
// Initialize the header checker.
|
2018-09-11 20:28:17 +00:00
|
|
|
$HeaderCheck = new componentbuilderHeaderCheck;
|
2017-02-02 11:54:07 +00:00
|
|
|
|
|
|
|
// Load uikit options.
|
|
|
|
$uikit = $this->params->get('uikit_load');
|
|
|
|
// Set script size.
|
|
|
|
$size = $this->params->get('uikit_min');
|
|
|
|
// Set css style.
|
|
|
|
$style = $this->params->get('uikit_style');
|
|
|
|
|
|
|
|
// The uikit css.
|
|
|
|
if ((!$HeaderCheck->css_loaded('uikit.min') || $uikit == 1) && $uikit != 2 && $uikit != 3)
|
|
|
|
{
|
2022-05-25 08:30:55 +00:00
|
|
|
JHtml::_('stylesheet', 'media/com_componentbuilder/uikit-v2/css/uikit'.$style.$size.'.css', ['version' => 'auto']);
|
2017-02-02 11:54:07 +00:00
|
|
|
}
|
|
|
|
// The uikit js.
|
|
|
|
if ((!$HeaderCheck->js_loaded('uikit.min') || $uikit == 1) && $uikit != 2 && $uikit != 3)
|
|
|
|
{
|
2022-05-25 08:30:55 +00:00
|
|
|
JHtml::_('script', 'media/com_componentbuilder/uikit-v2/js/uikit'.$size.'.js', ['version' => 'auto']);
|
2017-02-02 11:54:07 +00:00
|
|
|
}
|
|
|
|
|
2020-05-29 01:01:07 +00:00
|
|
|
// Load the script to find all uikit components needed.
|
|
|
|
if ($uikit != 2)
|
|
|
|
{
|
|
|
|
// Set the default uikit components in this view.
|
|
|
|
$uikitComp = array();
|
|
|
|
$uikitComp[] = 'data-uk-grid';
|
|
|
|
|
|
|
|
// Get field uikit components needed in this view.
|
|
|
|
$uikitFieldComp = $this->get('UikitComp');
|
|
|
|
if (isset($uikitFieldComp) && ComponentbuilderHelper::checkArray($uikitFieldComp))
|
|
|
|
{
|
|
|
|
if (isset($uikitComp) && ComponentbuilderHelper::checkArray($uikitComp))
|
|
|
|
{
|
|
|
|
$uikitComp = array_merge($uikitComp, $uikitFieldComp);
|
|
|
|
$uikitComp = array_unique($uikitComp);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$uikitComp = $uikitFieldComp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-02 11:54:07 +00:00
|
|
|
// Load the needed uikit components in this view.
|
|
|
|
if ($uikit != 2 && isset($uikitComp) && ComponentbuilderHelper::checkArray($uikitComp))
|
|
|
|
{
|
|
|
|
// load just in case.
|
|
|
|
jimport('joomla.filesystem.file');
|
|
|
|
// loading...
|
|
|
|
foreach ($uikitComp as $class)
|
|
|
|
{
|
|
|
|
foreach (ComponentbuilderHelper::$uk_components[$class] as $name)
|
|
|
|
{
|
|
|
|
// check if the CSS file exists.
|
2021-03-08 22:36:30 +00:00
|
|
|
if (File::exists(JPATH_ROOT.'/media/com_componentbuilder/uikit-v2/css/components/'.$name.$style.$size.'.css'))
|
2017-02-02 11:54:07 +00:00
|
|
|
{
|
|
|
|
// load the css.
|
2022-05-25 08:30:55 +00:00
|
|
|
JHtml::_('stylesheet', 'media/com_componentbuilder/uikit-v2/css/components/'.$name.$style.$size.'.css', ['version' => 'auto']);
|
2017-02-02 11:54:07 +00:00
|
|
|
}
|
|
|
|
// check if the JavaScript file exists.
|
2021-03-08 22:36:30 +00:00
|
|
|
if (File::exists(JPATH_ROOT.'/media/com_componentbuilder/uikit-v2/js/components/'.$name.$size.'.js'))
|
2017-02-02 11:54:07 +00:00
|
|
|
{
|
|
|
|
// load the js.
|
2022-05-25 08:30:55 +00:00
|
|
|
JHtml::_('script', 'media/com_componentbuilder/uikit-v2/js/components/'.$name.$size.'.js', ['version' => 'auto'], ['type' => 'text/javascript', 'async' => 'async']);
|
2017-02-02 11:54:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-09-11 20:28:17 +00:00
|
|
|
}
|
2017-03-03 21:53:18 +00:00
|
|
|
// add marked library
|
2021-03-05 03:08:47 +00:00
|
|
|
$this->document->addScript(JURI::root() . "administrator/components/com_componentbuilder/custom/marked.js");
|
|
|
|
// add the document default css file
|
2018-01-15 15:54:05 +00:00
|
|
|
$this->document->addStyleSheet(JURI::root(true) .'/administrator/components/com_componentbuilder/assets/css/compiler.css', (ComponentbuilderHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/css');
|
2017-02-17 18:35:18 +00:00
|
|
|
// Set the Custom JS script to view
|
|
|
|
$this->document->addScriptDeclaration("
|
|
|
|
function getComponentDetails_server(id){
|
2019-07-28 21:48:42 +00:00
|
|
|
var getUrl = JRouter(\"index.php?option=com_componentbuilder&task=ajax.getComponentDetails&format=json&raw=true\");
|
2017-02-17 18:35:18 +00:00
|
|
|
if(token.length > 0 && id > 0){
|
2019-07-08 16:05:54 +00:00
|
|
|
var request = token+'=1&id='+id;
|
2017-02-17 18:35:18 +00:00
|
|
|
}
|
|
|
|
return jQuery.ajax({
|
|
|
|
type: 'GET',
|
|
|
|
url: getUrl,
|
2019-07-28 21:48:42 +00:00
|
|
|
dataType: 'json',
|
2017-02-17 18:35:18 +00:00
|
|
|
data: request,
|
2019-07-28 21:48:42 +00:00
|
|
|
jsonp: false
|
2017-02-17 18:35:18 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
function getComponentDetails(id) {
|
|
|
|
getComponentDetails_server(id).done(function(result) {
|
|
|
|
if(result.html) {
|
|
|
|
jQuery('#component-details').html(result.html);
|
|
|
|
}
|
|
|
|
});
|
2017-03-03 21:53:18 +00:00
|
|
|
}
|
2020-01-03 01:41:55 +00:00
|
|
|
|
2019-12-03 02:17:35 +00:00
|
|
|
var noticeboard = \"https://vdm.bz/componentbuilder-noticeboard-md\";
|
|
|
|
var proboard = \"https://vdm.bz/componentbuilder-pro-noticeboard-md\";
|
2017-03-03 21:53:18 +00:00
|
|
|
jQuery(document).ready(function () {
|
|
|
|
jQuery.get(noticeboard)
|
|
|
|
.success(function(board) {
|
|
|
|
if (board.length > 5) {
|
2022-01-21 14:41:54 +00:00
|
|
|
jQuery(\".noticeboard-md\").html(marked.parse(board));
|
2017-03-03 21:53:18 +00:00
|
|
|
getIS(1,board).done(function(result) {
|
|
|
|
if (result){
|
2021-02-19 00:35:54 +00:00
|
|
|
jQuery(\".vdm-new-notice\").show();
|
2017-03-03 21:53:18 +00:00
|
|
|
getIS(2,board);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
2021-02-19 00:35:54 +00:00
|
|
|
jQuery(\".noticeboard-md\").html(all_is_good);
|
2017-03-03 21:53:18 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.error(function(jqXHR, textStatus, errorThrown) {
|
2021-02-19 00:35:54 +00:00
|
|
|
jQuery(\".noticeboard-md\").html(all_is_good);
|
2017-03-03 21:53:18 +00:00
|
|
|
});
|
2019-12-03 02:17:35 +00:00
|
|
|
jQuery.get(proboard)
|
|
|
|
.success(function(board) {
|
|
|
|
if (board.length > 5) {
|
2022-01-21 14:41:54 +00:00
|
|
|
jQuery(\".proboard-md\").html(marked.parse(board));
|
2019-12-03 02:17:35 +00:00
|
|
|
} else {
|
2021-02-19 00:35:54 +00:00
|
|
|
jQuery(\".proboard-md\").html(all_is_good);
|
2019-12-03 02:17:35 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.error(function(jqXHR, textStatus, errorThrown) {
|
2021-02-19 00:35:54 +00:00
|
|
|
jQuery(\".proboard-md\").html(all_is_good);
|
2019-12-03 02:17:35 +00:00
|
|
|
});
|
2017-03-03 21:53:18 +00:00
|
|
|
});
|
|
|
|
// to check is READ/NEW
|
|
|
|
function getIS(type,notice){
|
|
|
|
if (type == 1) {
|
2019-07-28 21:48:42 +00:00
|
|
|
var getUrl = JRouter(\"index.php?option=com_componentbuilder&task=ajax.isNew&format=json&raw=true\");
|
2017-03-03 21:53:18 +00:00
|
|
|
} else if (type == 2) {
|
2019-07-28 21:48:42 +00:00
|
|
|
var getUrl = JRouter(\"index.php?option=com_componentbuilder&task=ajax.isRead&format=json&raw=true\");
|
2017-03-03 21:53:18 +00:00
|
|
|
}
|
|
|
|
if(token.length > 0 && notice.length){
|
2019-07-08 16:05:54 +00:00
|
|
|
var request = token+\"=1¬ice=\"+notice;
|
2017-03-03 21:53:18 +00:00
|
|
|
}
|
|
|
|
return jQuery.ajax({
|
|
|
|
type: \"POST\",
|
|
|
|
url: getUrl,
|
2019-07-28 21:48:42 +00:00
|
|
|
dataType: 'json',
|
2017-03-03 21:53:18 +00:00
|
|
|
data: request,
|
2019-07-28 21:48:42 +00:00
|
|
|
jsonp: false
|
2017-03-03 21:53:18 +00:00
|
|
|
});
|
2020-01-03 01:41:55 +00:00
|
|
|
}
|
|
|
|
|
2021-03-05 03:08:47 +00:00
|
|
|
");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Setting the toolbar
|
|
|
|
*/
|
|
|
|
protected function addToolBar()
|
2020-04-23 21:15:07 +00:00
|
|
|
{
|
|
|
|
// hide the main menu
|
2021-03-05 03:08:47 +00:00
|
|
|
$this->app->input->set('hidemainmenu', true);
|
|
|
|
// add title to the page
|
2020-04-23 21:15:07 +00:00
|
|
|
JToolbarHelper::title(JText::_('COM_COMPONENTBUILDER_COMPILER'),'cogs');
|
|
|
|
// add cpanel button
|
2017-02-02 11:54:07 +00:00
|
|
|
JToolBarHelper::custom('compiler.dashboard', 'grid-2', '', 'COM_COMPONENTBUILDER_DASH', false);
|
2018-09-20 19:17:07 +00:00
|
|
|
if ($this->canDo->get('compiler.run_expansion'))
|
|
|
|
{
|
|
|
|
// add Run Expansion button.
|
2020-07-24 04:11:38 +00:00
|
|
|
JToolBarHelper::custom('compiler.runExpansion', 'expand-2 custom-button-runexpansion', '', 'COM_COMPONENTBUILDER_RUN_EXPANSION', false);
|
2018-09-20 19:17:07 +00:00
|
|
|
}
|
2019-05-15 17:39:27 +00:00
|
|
|
if ($this->canDo->get('compiler.translate'))
|
|
|
|
{
|
|
|
|
// add Translate button.
|
2020-07-24 04:11:38 +00:00
|
|
|
JToolBarHelper::custom('compiler.runTranslator', 'comments-2 custom-button-runtranslator', '', 'COM_COMPONENTBUILDER_TRANSLATE', false);
|
2019-05-15 17:39:27 +00:00
|
|
|
}
|
2021-02-19 23:53:14 +00:00
|
|
|
if ($this->canDo->get('compiler.compiler_animations'))
|
|
|
|
{
|
|
|
|
// add Compiler Animations button.
|
2022-10-20 14:40:18 +00:00
|
|
|
JToolBarHelper::custom('compiler.getDynamicContent', 'download custom-button-getdynamiccontent', '', 'COM_COMPONENTBUILDER_COMPILER_ANIMATIONS', false);
|
2021-02-19 23:53:14 +00:00
|
|
|
}
|
2017-02-02 11:54:07 +00:00
|
|
|
if ($this->canDo->get('compiler.clear_tmp'))
|
|
|
|
{
|
|
|
|
// add Clear tmp button.
|
2020-07-24 04:11:38 +00:00
|
|
|
JToolBarHelper::custom('compiler.clearTmp', 'purge custom-button-cleartmp', '', 'COM_COMPONENTBUILDER_CLEAR_TMP', false);
|
2021-03-05 03:08:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// set help url for this view if found
|
2022-02-12 22:28:17 +00:00
|
|
|
$this->help_url = ComponentbuilderHelper::getHelpUrl('compiler');
|
|
|
|
if (ComponentbuilderHelper::checkString($this->help_url))
|
2021-03-05 03:08:47 +00:00
|
|
|
{
|
2022-02-12 22:28:17 +00:00
|
|
|
JToolbarHelper::help('COM_COMPONENTBUILDER_HELP_MANAGER', false, $this->help_url);
|
2021-03-05 03:08:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// add the options comp button
|
|
|
|
if ($this->canDo->get('core.admin') || $this->canDo->get('core.options'))
|
|
|
|
{
|
|
|
|
JToolBarHelper::preferences('com_componentbuilder');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Escapes a value for output in a view script.
|
|
|
|
*
|
|
|
|
* @param mixed $var The output to escape.
|
|
|
|
*
|
|
|
|
* @return mixed The escaped value.
|
|
|
|
*/
|
|
|
|
public function escape($var)
|
|
|
|
{
|
|
|
|
// use the helper htmlEscape method instead.
|
|
|
|
return ComponentbuilderHelper::htmlEscape($var, $this->_charset);
|
|
|
|
}
|
|
|
|
}
|