2016-01-30 20:28:43 +00:00
|
|
|
<?php
|
2018-05-18 06:28:27 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
|
|
|
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
|
|
|
|
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
|
|
|
* @copyright Copyright (C) 2015 - 2018 Vast Development Method. All rights reserved.
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
|
|
|
use Joomla\Registry\Registry;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Componentbuilder Field Model
|
|
|
|
*/
|
|
|
|
class ComponentbuilderModelField extends JModelAdmin
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var string The prefix to use with controller messages.
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
protected $text_prefix = 'COM_COMPONENTBUILDER';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The type alias for this content type.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
* @since 3.2
|
|
|
|
*/
|
|
|
|
public $typeAlias = 'com_componentbuilder.field';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a Table object, always creating it
|
|
|
|
*
|
|
|
|
* @param type $type The table type to instantiate
|
|
|
|
* @param string $prefix A prefix for the table class name. Optional.
|
|
|
|
* @param array $config Configuration array for model. Optional.
|
|
|
|
*
|
|
|
|
* @return JTable A database object
|
|
|
|
*
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
public function getTable($type = 'field', $prefix = 'ComponentbuilderTable', $config = array())
|
|
|
|
{
|
2018-08-07 12:25:26 +00:00
|
|
|
// add table path for when model gets used from other component
|
|
|
|
$this->addTablePath(JPATH_ADMINISTRATOR . '/components/com_componentbuilder/tables');
|
|
|
|
// get instance of the table
|
2016-01-30 20:28:43 +00:00
|
|
|
return JTable::getInstance($type, $prefix, $config);
|
2018-01-15 15:54:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getVDM()
|
|
|
|
{
|
|
|
|
return $this->vastDevMod;
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to get a single record.
|
|
|
|
*
|
|
|
|
* @param integer $pk The id of the primary key.
|
|
|
|
*
|
|
|
|
* @return mixed Object on success, false on failure.
|
|
|
|
*
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
public function getItem($pk = null)
|
|
|
|
{
|
|
|
|
if ($item = parent::getItem($pk))
|
|
|
|
{
|
2017-11-26 00:29:08 +00:00
|
|
|
if (!empty($item->params) && !is_array($item->params))
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// Convert the params field to an array.
|
|
|
|
$registry = new Registry;
|
|
|
|
$registry->loadString($item->params);
|
|
|
|
$item->params = $registry->toArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($item->metadata))
|
|
|
|
{
|
|
|
|
// Convert the metadata field to an array.
|
|
|
|
$registry = new Registry;
|
|
|
|
$registry->loadString($item->metadata);
|
|
|
|
$item->metadata = $registry->toArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($item->css_views))
|
|
|
|
{
|
|
|
|
// base64 Decode css_views.
|
|
|
|
$item->css_views = base64_decode($item->css_views);
|
|
|
|
}
|
|
|
|
|
2018-04-11 20:48:37 +00:00
|
|
|
if (!empty($item->css_view))
|
2018-04-11 20:05:47 +00:00
|
|
|
{
|
2018-04-11 20:48:37 +00:00
|
|
|
// base64 Decode css_view.
|
|
|
|
$item->css_view = base64_decode($item->css_view);
|
2018-04-11 20:05:47 +00:00
|
|
|
}
|
|
|
|
|
2018-04-23 12:47:19 +00:00
|
|
|
if (!empty($item->javascript_view_footer))
|
|
|
|
{
|
|
|
|
// base64 Decode javascript_view_footer.
|
|
|
|
$item->javascript_view_footer = base64_decode($item->javascript_view_footer);
|
|
|
|
}
|
|
|
|
|
2018-04-11 20:48:37 +00:00
|
|
|
if (!empty($item->javascript_views_footer))
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2018-04-11 20:48:37 +00:00
|
|
|
// base64 Decode javascript_views_footer.
|
|
|
|
$item->javascript_views_footer = base64_decode($item->javascript_views_footer);
|
2018-01-15 15:54:05 +00:00
|
|
|
}
|
|
|
|
|
2018-04-30 12:06:05 +00:00
|
|
|
if (!empty($item->xml))
|
|
|
|
{
|
|
|
|
// JSON Decode xml.
|
|
|
|
$item->xml = json_decode($item->xml);
|
|
|
|
}
|
|
|
|
|
2018-02-27 12:17:38 +00:00
|
|
|
|
2018-01-15 15:54:05 +00:00
|
|
|
if (empty($item->id))
|
|
|
|
{
|
|
|
|
$id = 0;
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
2018-01-15 15:54:05 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
$id = $item->id;
|
2019-01-31 21:44:21 +00:00
|
|
|
}
|
2018-01-15 15:54:05 +00:00
|
|
|
// set the id and view name to session
|
|
|
|
if ($vdm = ComponentbuilderHelper::get('field__'.$id))
|
|
|
|
{
|
|
|
|
$this->vastDevMod = $vdm;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-08-18 12:09:17 +00:00
|
|
|
// set the vast development method key
|
2018-01-15 15:54:05 +00:00
|
|
|
$this->vastDevMod = ComponentbuilderHelper::randomkey(50);
|
|
|
|
ComponentbuilderHelper::set($this->vastDevMod, 'field__'.$id);
|
|
|
|
ComponentbuilderHelper::set('field__'.$id, $this->vastDevMod);
|
2018-08-18 12:09:17 +00:00
|
|
|
// set a return value if found
|
|
|
|
$jinput = JFactory::getApplication()->input;
|
|
|
|
$return = $jinput->get('return', null, 'base64');
|
|
|
|
ComponentbuilderHelper::set($this->vastDevMod . '__return', $return);
|
2018-02-27 12:17:38 +00:00
|
|
|
}
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
if (!empty($item->id))
|
|
|
|
{
|
|
|
|
$item->tags = new JHelperTags;
|
|
|
|
$item->tags->getTagIds($item->id, 'com_componentbuilder.field');
|
|
|
|
}
|
2017-10-14 17:18:29 +00:00
|
|
|
}
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
return $item;
|
2018-09-11 20:28:17 +00:00
|
|
|
}
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to get the record form.
|
|
|
|
*
|
|
|
|
* @param array $data Data for the form.
|
|
|
|
* @param boolean $loadData True if the form is to load its own data (default case), false if not.
|
2018-08-23 01:37:42 +00:00
|
|
|
* @param array $options Optional array of options for the form creation.
|
2016-01-30 20:28:43 +00:00
|
|
|
*
|
|
|
|
* @return mixed A JForm object on success, false on failure
|
|
|
|
*
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
2018-08-23 01:37:42 +00:00
|
|
|
public function getForm($data = array(), $loadData = true, $options = array('control' => 'jform'))
|
|
|
|
{
|
|
|
|
// set load data option
|
|
|
|
$options['load_data'] = $loadData;
|
2016-11-22 17:08:17 +00:00
|
|
|
// Get the form.
|
2018-08-23 01:37:42 +00:00
|
|
|
$form = $this->loadForm('com_componentbuilder.field', 'field', $options);
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
if (empty($form))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$jinput = JFactory::getApplication()->input;
|
|
|
|
|
|
|
|
// The front end calls this model and uses a_id to avoid id clashes so we need to check for that first.
|
|
|
|
if ($jinput->get('a_id'))
|
|
|
|
{
|
|
|
|
$id = $jinput->get('a_id', 0, 'INT');
|
|
|
|
}
|
|
|
|
// The back end uses id so we use that the rest of the time and set it to 0 by default.
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$id = $jinput->get('id', 0, 'INT');
|
|
|
|
}
|
|
|
|
|
|
|
|
$user = JFactory::getUser();
|
|
|
|
|
|
|
|
// Check for existing item.
|
|
|
|
// Modify the form based on Edit State access controls.
|
|
|
|
if ($id != 0 && (!$user->authorise('field.edit.state', 'com_componentbuilder.field.' . (int) $id))
|
|
|
|
|| ($id == 0 && !$user->authorise('field.edit.state', 'com_componentbuilder')))
|
|
|
|
{
|
|
|
|
// Disable fields for display.
|
|
|
|
$form->setFieldAttribute('ordering', 'disabled', 'true');
|
|
|
|
$form->setFieldAttribute('published', 'disabled', 'true');
|
|
|
|
// Disable fields while saving.
|
|
|
|
$form->setFieldAttribute('ordering', 'filter', 'unset');
|
|
|
|
$form->setFieldAttribute('published', 'filter', 'unset');
|
|
|
|
}
|
2016-02-20 18:13:00 +00:00
|
|
|
// If this is a new item insure the greated by is set.
|
|
|
|
if (0 == $id)
|
|
|
|
{
|
|
|
|
// Set the created_by to this user
|
|
|
|
$form->setValue('created_by', null, $user->id);
|
|
|
|
}
|
2016-01-30 20:28:43 +00:00
|
|
|
// Modify the form based on Edit Creaded By access controls.
|
|
|
|
if (!$user->authorise('core.edit.created_by', 'com_componentbuilder'))
|
|
|
|
{
|
|
|
|
// Disable fields for display.
|
|
|
|
$form->setFieldAttribute('created_by', 'disabled', 'true');
|
|
|
|
// Disable fields for display.
|
|
|
|
$form->setFieldAttribute('created_by', 'readonly', 'true');
|
|
|
|
// Disable fields while saving.
|
|
|
|
$form->setFieldAttribute('created_by', 'filter', 'unset');
|
|
|
|
}
|
|
|
|
// Modify the form based on Edit Creaded Date access controls.
|
|
|
|
if (!$user->authorise('core.edit.created', 'com_componentbuilder'))
|
|
|
|
{
|
|
|
|
// Disable fields for display.
|
|
|
|
$form->setFieldAttribute('created', 'disabled', 'true');
|
|
|
|
// Disable fields while saving.
|
|
|
|
$form->setFieldAttribute('created', 'filter', 'unset');
|
|
|
|
}
|
2016-02-20 18:13:00 +00:00
|
|
|
// Only load these values if no id is found
|
|
|
|
if (0 == $id)
|
|
|
|
{
|
2018-08-07 12:25:26 +00:00
|
|
|
// Set redirected view name
|
|
|
|
$redirectedView = $jinput->get('ref', null, 'STRING');
|
|
|
|
// Set field name (or fall back to view name)
|
|
|
|
$redirectedField = $jinput->get('field', $redirectedView, 'STRING');
|
|
|
|
// Set redirected view id
|
|
|
|
$redirectedId = $jinput->get('refid', 0, 'INT');
|
|
|
|
// Set field id (or fall back to redirected view id)
|
|
|
|
$redirectedValue = $jinput->get('field_id', $redirectedId, 'INT');
|
2016-02-20 18:13:00 +00:00
|
|
|
if (0 != $redirectedValue && $redirectedField)
|
|
|
|
{
|
|
|
|
// Now set the local-redirected field default value
|
|
|
|
$form->setValue($redirectedField, null, $redirectedValue);
|
|
|
|
}
|
|
|
|
}
|
2018-08-02 05:36:47 +00:00
|
|
|
|
|
|
|
// update all editors to use this components global editor
|
|
|
|
$global_editor = JComponentHelper::getParams('com_componentbuilder')->get('editor', 'none');
|
|
|
|
// now get all the editor fields
|
|
|
|
$editors = $form->getXml()->xpath("//field[@type='editor']");
|
|
|
|
// check if we found any
|
|
|
|
if (ComponentbuilderHelper::checkArray($editors))
|
|
|
|
{
|
|
|
|
foreach ($editors as $editor)
|
|
|
|
{
|
|
|
|
// get the field names
|
|
|
|
$name = (string) $editor['name'];
|
|
|
|
// set the field editor value (with none as fallback)
|
|
|
|
$form->setFieldAttribute($name, 'editor', $global_editor . '|none');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-30 20:28:43 +00:00
|
|
|
return $form;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to get the script that have to be included on the form
|
|
|
|
*
|
|
|
|
* @return string script files
|
|
|
|
*/
|
|
|
|
public function getScript()
|
|
|
|
{
|
|
|
|
return 'administrator/components/com_componentbuilder/models/forms/field.js';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to test whether a record can be deleted.
|
|
|
|
*
|
|
|
|
* @param object $record A record object.
|
|
|
|
*
|
|
|
|
* @return boolean True if allowed to delete the record. Defaults to the permission set in the component.
|
|
|
|
*
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
protected function canDelete($record)
|
|
|
|
{
|
|
|
|
if (!empty($record->id))
|
|
|
|
{
|
|
|
|
if ($record->published != -2)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$user = JFactory::getUser();
|
2017-02-09 16:11:10 +00:00
|
|
|
// The record has been set. Check the record permissions.
|
|
|
|
return $user->authorise('field.delete', 'com_componentbuilder.field.' . (int) $record->id);
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to test whether a record can have its state edited.
|
|
|
|
*
|
|
|
|
* @param object $record A record object.
|
|
|
|
*
|
|
|
|
* @return boolean True if allowed to change the state of the record. Defaults to the permission set in the component.
|
|
|
|
*
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
protected function canEditState($record)
|
|
|
|
{
|
|
|
|
$user = JFactory::getUser();
|
2018-05-26 10:03:08 +00:00
|
|
|
$recordId = (!empty($record->id)) ? $record->id : 0;
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
if ($recordId)
|
|
|
|
{
|
|
|
|
// The record has been set. Check the record permissions.
|
|
|
|
$permission = $user->authorise('field.edit.state', 'com_componentbuilder.field.' . (int) $recordId);
|
|
|
|
if (!$permission && !is_null($permission))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// In the absense of better information, revert to the component permissions.
|
|
|
|
return $user->authorise('field.edit.state', 'com_componentbuilder');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method override to check if you can edit an existing record.
|
|
|
|
*
|
|
|
|
* @param array $data An array of input data.
|
|
|
|
* @param string $key The name of the key for the primary key.
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
* @since 2.5
|
|
|
|
*/
|
|
|
|
protected function allowEdit($data = array(), $key = 'id')
|
|
|
|
{
|
|
|
|
// Check specific edit permission then general edit permission.
|
|
|
|
$user = JFactory::getUser();
|
|
|
|
|
|
|
|
return $user->authorise('field.edit', 'com_componentbuilder.field.'. ((int) isset($data[$key]) ? $data[$key] : 0)) or $user->authorise('field.edit', 'com_componentbuilder');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepare and sanitise the table data prior to saving.
|
|
|
|
*
|
|
|
|
* @param JTable $table A JTable object.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
protected function prepareTable($table)
|
|
|
|
{
|
|
|
|
$date = JFactory::getDate();
|
|
|
|
$user = JFactory::getUser();
|
|
|
|
|
|
|
|
if (isset($table->name))
|
|
|
|
{
|
|
|
|
$table->name = htmlspecialchars_decode($table->name, ENT_QUOTES);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($table->alias) && empty($table->alias))
|
|
|
|
{
|
|
|
|
$table->generateAlias();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($table->id))
|
|
|
|
{
|
|
|
|
$table->created = $date->toSql();
|
|
|
|
// set the user
|
2016-02-20 18:13:00 +00:00
|
|
|
if ($table->created_by == 0 || empty($table->created_by))
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
$table->created_by = $user->id;
|
|
|
|
}
|
|
|
|
// Set ordering to the last item if not set
|
|
|
|
if (empty($table->ordering))
|
|
|
|
{
|
|
|
|
$db = JFactory::getDbo();
|
|
|
|
$query = $db->getQuery(true)
|
|
|
|
->select('MAX(ordering)')
|
|
|
|
->from($db->quoteName('#__componentbuilder_field'));
|
|
|
|
$db->setQuery($query);
|
|
|
|
$max = $db->loadResult();
|
|
|
|
|
|
|
|
$table->ordering = $max + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$table->modified = $date->toSql();
|
|
|
|
$table->modified_by = $user->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($table->id))
|
|
|
|
{
|
|
|
|
// Increment the items version number.
|
|
|
|
$table->version++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to get the data that should be injected in the form.
|
|
|
|
*
|
|
|
|
* @return mixed The data for the form.
|
|
|
|
*
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
protected function loadFormData()
|
|
|
|
{
|
|
|
|
// Check the session for previously entered form data.
|
|
|
|
$data = JFactory::getApplication()->getUserState('com_componentbuilder.edit.field.data', array());
|
|
|
|
|
|
|
|
if (empty($data))
|
|
|
|
{
|
|
|
|
$data = $this->getItem();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-05-26 10:03:08 +00:00
|
|
|
* Method to validate the form data.
|
|
|
|
*
|
|
|
|
* @param JForm $form The form to validate against.
|
|
|
|
* @param array $data The data to validate.
|
|
|
|
* @param string $group The name of the field group to validate.
|
|
|
|
*
|
|
|
|
* @return mixed Array of filtered data if valid, false otherwise.
|
|
|
|
*
|
|
|
|
* @see JFormRule
|
|
|
|
* @see JFilterInput
|
|
|
|
* @since 12.2
|
|
|
|
*/
|
2016-01-30 20:28:43 +00:00
|
|
|
public function validate($form, $data, $group = null)
|
|
|
|
{
|
|
|
|
// check if the not_required field is set
|
|
|
|
if (ComponentbuilderHelper::checkString($data['not_required']))
|
|
|
|
{
|
|
|
|
$requiredFields = (array) explode(',',(string) $data['not_required']);
|
|
|
|
$requiredFields = array_unique($requiredFields);
|
|
|
|
// now change the required field attributes value
|
|
|
|
foreach ($requiredFields as $requiredField)
|
|
|
|
{
|
|
|
|
// make sure there is a string value
|
|
|
|
if (ComponentbuilderHelper::checkString($requiredField))
|
|
|
|
{
|
|
|
|
// change to false
|
|
|
|
$form->setFieldAttribute($requiredField, 'required', 'false');
|
|
|
|
// also clear the data set
|
|
|
|
$data[$requiredField] = '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return parent::validate($form, $data, $group);
|
2018-09-11 20:28:17 +00:00
|
|
|
}
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to get the unique fields of this table.
|
|
|
|
*
|
|
|
|
* @return mixed An array of field names, boolean false if none is set.
|
|
|
|
*
|
|
|
|
* @since 3.0
|
|
|
|
*/
|
2016-02-26 12:46:15 +00:00
|
|
|
protected function getUniqeFields()
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to delete one or more records.
|
|
|
|
*
|
|
|
|
* @param array &$pks An array of record primary keys.
|
|
|
|
*
|
|
|
|
* @return boolean True if successful, false if an error occurs.
|
|
|
|
*
|
|
|
|
* @since 12.2
|
|
|
|
*/
|
|
|
|
public function delete(&$pks)
|
|
|
|
{
|
|
|
|
if (!parent::delete($pks))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2016-09-07 21:20:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to change the published state of one or more records.
|
|
|
|
*
|
|
|
|
* @param array &$pks A list of the primary keys to change.
|
|
|
|
* @param integer $value The value of the published state.
|
|
|
|
*
|
|
|
|
* @return boolean True on success.
|
|
|
|
*
|
|
|
|
* @since 12.2
|
|
|
|
*/
|
|
|
|
public function publish(&$pks, $value = 1)
|
|
|
|
{
|
|
|
|
if (!parent::publish($pks, $value))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to perform batch operations on an item or a set of items.
|
|
|
|
*
|
|
|
|
* @param array $commands An array of commands to perform.
|
|
|
|
* @param array $pks An array of item ids.
|
|
|
|
* @param array $contexts An array of item contexts.
|
|
|
|
*
|
|
|
|
* @return boolean Returns true on success, false on failure.
|
|
|
|
*
|
|
|
|
* @since 12.2
|
|
|
|
*/
|
|
|
|
public function batch($commands, $pks, $contexts)
|
|
|
|
{
|
|
|
|
// Sanitize ids.
|
|
|
|
$pks = array_unique($pks);
|
|
|
|
JArrayHelper::toInteger($pks);
|
|
|
|
|
|
|
|
// Remove any values of zero.
|
|
|
|
if (array_search(0, $pks, true))
|
|
|
|
{
|
|
|
|
unset($pks[array_search(0, $pks, true)]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($pks))
|
|
|
|
{
|
|
|
|
$this->setError(JText::_('JGLOBAL_NO_ITEM_SELECTED'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$done = false;
|
|
|
|
|
|
|
|
// Set some needed variables.
|
|
|
|
$this->user = JFactory::getUser();
|
|
|
|
$this->table = $this->getTable();
|
|
|
|
$this->tableClassName = get_class($this->table);
|
|
|
|
$this->contentType = new JUcmType;
|
|
|
|
$this->type = $this->contentType->getTypeByTable($this->tableClassName);
|
|
|
|
$this->canDo = ComponentbuilderHelper::getActions('field');
|
|
|
|
$this->batchSet = true;
|
|
|
|
|
|
|
|
if (!$this->canDo->get('core.batch'))
|
|
|
|
{
|
|
|
|
$this->setError(JText::_('JLIB_APPLICATION_ERROR_INSUFFICIENT_BATCH_INFORMATION'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->type == false)
|
|
|
|
{
|
|
|
|
$type = new JUcmType;
|
|
|
|
$this->type = $type->getTypeByAlias($this->typeAlias);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->tagsObserver = $this->table->getObserverOfClass('JTableObserverTags');
|
|
|
|
|
|
|
|
if (!empty($commands['move_copy']))
|
|
|
|
{
|
|
|
|
$cmd = JArrayHelper::getValue($commands, 'move_copy', 'c');
|
|
|
|
|
|
|
|
if ($cmd == 'c')
|
|
|
|
{
|
|
|
|
$result = $this->batchCopy($commands, $pks, $contexts);
|
|
|
|
|
|
|
|
if (is_array($result))
|
|
|
|
{
|
|
|
|
foreach ($result as $old => $new)
|
|
|
|
{
|
|
|
|
$contexts[$new] = $contexts[$old];
|
|
|
|
}
|
|
|
|
$pks = array_values($result);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elseif ($cmd == 'm' && !$this->batchMove($commands, $pks, $contexts))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$done = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$done)
|
|
|
|
{
|
|
|
|
$this->setError(JText::_('JLIB_APPLICATION_ERROR_INSUFFICIENT_BATCH_INFORMATION'));
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clear the cache
|
|
|
|
$this->cleanCache();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Batch copy items to a new category or current.
|
|
|
|
*
|
|
|
|
* @param integer $values The new values.
|
|
|
|
* @param array $pks An array of row IDs.
|
|
|
|
* @param array $contexts An array of item contexts.
|
|
|
|
*
|
|
|
|
* @return mixed An array of new IDs on success, boolean false on failure.
|
|
|
|
*
|
2018-05-26 10:03:08 +00:00
|
|
|
* @since 12.2
|
2016-01-30 20:28:43 +00:00
|
|
|
*/
|
2016-02-26 12:46:15 +00:00
|
|
|
protected function batchCopy($values, $pks, $contexts)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
if (empty($this->batchSet))
|
|
|
|
{
|
|
|
|
// Set some needed variables.
|
|
|
|
$this->user = JFactory::getUser();
|
|
|
|
$this->table = $this->getTable();
|
|
|
|
$this->tableClassName = get_class($this->table);
|
|
|
|
$this->canDo = ComponentbuilderHelper::getActions('field');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$this->canDo->get('field.create') && !$this->canDo->get('field.batch'))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get list of uniqe fields
|
|
|
|
$uniqeFields = $this->getUniqeFields();
|
|
|
|
// remove move_copy from array
|
|
|
|
unset($values['move_copy']);
|
|
|
|
|
|
|
|
// make sure published is set
|
|
|
|
if (!isset($values['published']))
|
|
|
|
{
|
|
|
|
$values['published'] = 0;
|
|
|
|
}
|
|
|
|
elseif (isset($values['published']) && !$this->canDo->get('field.edit.state'))
|
|
|
|
{
|
|
|
|
$values['published'] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($values['category']) && (int) $values['category'] > 0 && !static::checkCategoryId($values['category']))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
elseif (isset($values['category']) && (int) $values['category'] > 0)
|
|
|
|
{
|
|
|
|
// move the category value to correct field name
|
|
|
|
$values['catid'] = $values['category'];
|
|
|
|
unset($values['category']);
|
|
|
|
}
|
|
|
|
elseif (isset($values['category']))
|
|
|
|
{
|
|
|
|
unset($values['category']);
|
|
|
|
}
|
|
|
|
|
|
|
|
$newIds = array();
|
|
|
|
// Parent exists so let's proceed
|
|
|
|
while (!empty($pks))
|
|
|
|
{
|
|
|
|
// Pop the first ID off the stack
|
|
|
|
$pk = array_shift($pks);
|
|
|
|
|
|
|
|
$this->table->reset();
|
|
|
|
|
|
|
|
// only allow copy if user may edit this item.
|
|
|
|
if (!$this->user->authorise('field.edit', $contexts[$pk]))
|
|
|
|
{
|
|
|
|
// Not fatal error
|
|
|
|
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that the row actually exists
|
|
|
|
if (!$this->table->load($pk))
|
|
|
|
{
|
|
|
|
if ($error = $this->table->getError())
|
|
|
|
{
|
|
|
|
// Fatal error
|
|
|
|
$this->setError($error);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Not fatal error
|
|
|
|
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// insert all set values
|
|
|
|
if (ComponentbuilderHelper::checkArray($values))
|
|
|
|
{
|
|
|
|
foreach ($values as $key => $value)
|
|
|
|
{
|
|
|
|
if (strlen($value) > 0 && isset($this->table->$key))
|
|
|
|
{
|
|
|
|
$this->table->$key = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// update all uniqe fields
|
|
|
|
if (ComponentbuilderHelper::checkArray($uniqeFields))
|
|
|
|
{
|
|
|
|
foreach ($uniqeFields as $uniqeField)
|
|
|
|
{
|
|
|
|
$this->table->$uniqeField = $this->generateUniqe($uniqeField,$this->table->$uniqeField);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset the ID because we are making a copy
|
|
|
|
$this->table->id = 0;
|
|
|
|
|
|
|
|
// TODO: Deal with ordering?
|
2018-05-26 10:03:08 +00:00
|
|
|
// $this->table->ordering = 1;
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
// Check the row.
|
|
|
|
if (!$this->table->check())
|
|
|
|
{
|
|
|
|
$this->setError($this->table->getError());
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($this->type))
|
|
|
|
{
|
|
|
|
$this->createTagsHelper($this->tagsObserver, $this->type, $pk, $this->typeAlias, $this->table);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Store the row.
|
|
|
|
if (!$this->table->store())
|
|
|
|
{
|
|
|
|
$this->setError($this->table->getError());
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the new item ID
|
|
|
|
$newId = $this->table->get('id');
|
|
|
|
|
|
|
|
// Add the new ID to the array
|
|
|
|
$newIds[$pk] = $newId;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clean the cache
|
|
|
|
$this->cleanCache();
|
|
|
|
|
|
|
|
return $newIds;
|
2018-09-11 20:28:17 +00:00
|
|
|
}
|
2016-01-30 20:28:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Batch move items to a new category
|
|
|
|
*
|
|
|
|
* @param integer $value The new category ID.
|
|
|
|
* @param array $pks An array of row IDs.
|
|
|
|
* @param array $contexts An array of item contexts.
|
|
|
|
*
|
|
|
|
* @return boolean True if successful, false otherwise and internal error is set.
|
|
|
|
*
|
2018-05-26 10:03:08 +00:00
|
|
|
* @since 12.2
|
2016-01-30 20:28:43 +00:00
|
|
|
*/
|
2016-02-26 12:46:15 +00:00
|
|
|
protected function batchMove($values, $pks, $contexts)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
if (empty($this->batchSet))
|
|
|
|
{
|
|
|
|
// Set some needed variables.
|
|
|
|
$this->user = JFactory::getUser();
|
|
|
|
$this->table = $this->getTable();
|
|
|
|
$this->tableClassName = get_class($this->table);
|
|
|
|
$this->canDo = ComponentbuilderHelper::getActions('field');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$this->canDo->get('field.edit') && !$this->canDo->get('field.batch'))
|
|
|
|
{
|
|
|
|
$this->setError(JText::_('JLIB_APPLICATION_ERROR_BATCH_CANNOT_EDIT'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// make sure published only updates if user has the permission.
|
|
|
|
if (isset($values['published']) && !$this->canDo->get('field.edit.state'))
|
|
|
|
{
|
|
|
|
unset($values['published']);
|
|
|
|
}
|
|
|
|
// remove move_copy from array
|
|
|
|
unset($values['move_copy']);
|
|
|
|
|
|
|
|
if (isset($values['category']) && (int) $values['category'] > 0 && !static::checkCategoryId($values['category']))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
elseif (isset($values['category']) && (int) $values['category'] > 0)
|
|
|
|
{
|
|
|
|
// move the category value to correct field name
|
|
|
|
$values['catid'] = $values['category'];
|
|
|
|
unset($values['category']);
|
|
|
|
}
|
|
|
|
elseif (isset($values['category']))
|
|
|
|
{
|
|
|
|
unset($values['category']);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Parent exists so we proceed
|
|
|
|
foreach ($pks as $pk)
|
|
|
|
{
|
|
|
|
if (!$this->user->authorise('field.edit', $contexts[$pk]))
|
|
|
|
{
|
|
|
|
$this->setError(JText::_('JLIB_APPLICATION_ERROR_BATCH_CANNOT_EDIT'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that the row actually exists
|
|
|
|
if (!$this->table->load($pk))
|
|
|
|
{
|
|
|
|
if ($error = $this->table->getError())
|
|
|
|
{
|
|
|
|
// Fatal error
|
|
|
|
$this->setError($error);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Not fatal error
|
|
|
|
$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// insert all set values.
|
|
|
|
if (ComponentbuilderHelper::checkArray($values))
|
|
|
|
{
|
|
|
|
foreach ($values as $key => $value)
|
|
|
|
{
|
|
|
|
// Do special action for access.
|
2017-02-02 11:54:07 +00:00
|
|
|
if ('access' === $key && strlen($value) > 0)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
$this->table->$key = $value;
|
|
|
|
}
|
|
|
|
elseif (strlen($value) > 0 && isset($this->table->$key))
|
|
|
|
{
|
|
|
|
$this->table->$key = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Check the row.
|
|
|
|
if (!$this->table->check())
|
|
|
|
{
|
|
|
|
$this->setError($this->table->getError());
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($this->type))
|
|
|
|
{
|
|
|
|
$this->createTagsHelper($this->tagsObserver, $this->type, $pk, $this->typeAlias, $this->table);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Store the row.
|
|
|
|
if (!$this->table->store())
|
|
|
|
{
|
|
|
|
$this->setError($this->table->getError());
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clean the cache
|
|
|
|
$this->cleanCache();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to save the form data.
|
|
|
|
*
|
|
|
|
* @param array $data The form data.
|
|
|
|
*
|
|
|
|
* @return boolean True on success.
|
|
|
|
*
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
public function save($data)
|
|
|
|
{
|
|
|
|
$input = JFactory::getApplication()->input;
|
|
|
|
$filter = JFilterInput::getInstance();
|
|
|
|
|
|
|
|
// set the metadata to the Item Data
|
|
|
|
if (isset($data['metadata']) && isset($data['metadata']['author']))
|
|
|
|
{
|
|
|
|
$data['metadata']['author'] = $filter->clean($data['metadata']['author'], 'TRIM');
|
|
|
|
|
|
|
|
$metadata = new JRegistry;
|
|
|
|
$metadata->loadArray($data['metadata']);
|
|
|
|
$data['metadata'] = (string) $metadata;
|
2018-09-11 20:28:17 +00:00
|
|
|
}
|
2016-01-30 20:28:43 +00:00
|
|
|
|
2018-04-11 20:05:47 +00:00
|
|
|
// get the properties
|
|
|
|
$properties = $input->get('properties', null, 'ARRAY');
|
2018-04-13 15:24:06 +00:00
|
|
|
// get the extra properties
|
|
|
|
$extraproperties = $input->get('extraproperties', null, 'ARRAY');
|
2018-04-14 22:52:48 +00:00
|
|
|
// get the type php property
|
2018-09-24 14:37:51 +00:00
|
|
|
$typephp = array();
|
|
|
|
foreach (ComponentbuilderHelper::$phpFieldArray as $x)
|
|
|
|
{
|
|
|
|
$typephp[$x] = $input->get('property_type_php' . $x, null, 'RAW');
|
|
|
|
}
|
2018-04-11 20:05:47 +00:00
|
|
|
// make sure we have an array
|
|
|
|
if (ComponentbuilderHelper::checkArray($properties))
|
|
|
|
{
|
|
|
|
// set the bucket
|
|
|
|
$bucket = array();
|
|
|
|
foreach($properties as $property)
|
|
|
|
{
|
|
|
|
// make sure we have the correct values
|
2018-09-24 14:37:51 +00:00
|
|
|
if (ComponentbuilderHelper::checkArray($property) && isset($property['name']) && ComponentbuilderHelper::checkString($property['name']) && (isset($property['value']) || 'default' === $property['name']))
|
2018-04-11 20:05:47 +00:00
|
|
|
{
|
2018-04-13 20:06:45 +00:00
|
|
|
// fix the name (TODO)
|
|
|
|
// $property['name'] = ComponentbuilderHelper::safeString($property['name']);
|
2018-04-11 20:05:47 +00:00
|
|
|
// some fixes, just in case (more can be added)
|
|
|
|
switch ($property['name'])
|
|
|
|
{
|
|
|
|
// fix the values
|
|
|
|
case 'name':
|
2019-02-15 22:03:21 +00:00
|
|
|
// check if we have placeholder in name
|
|
|
|
if (strpos($property['value'], '[[[') !== false || strpos($property['value'], '###') !== false)
|
|
|
|
{
|
|
|
|
$property['value'] = trim($property['value']);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$property['value'] = ComponentbuilderHelper::safeString($property['value']);
|
|
|
|
}
|
|
|
|
break;
|
2018-04-11 20:05:47 +00:00
|
|
|
case 'type':
|
|
|
|
$property['value'] = ComponentbuilderHelper::safeString($property['value']);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// load the property
|
2018-09-24 14:37:51 +00:00
|
|
|
$bucket[] = "\t" . $property['name'] . '="' . str_replace('"', """, $property['value']) . '"';
|
2018-04-11 20:05:47 +00:00
|
|
|
}
|
|
|
|
}
|
2018-04-13 15:24:06 +00:00
|
|
|
// make sure we have an array
|
|
|
|
if (ComponentbuilderHelper::checkArray($extraproperties))
|
|
|
|
{
|
|
|
|
foreach($extraproperties as $xproperty)
|
|
|
|
{
|
|
|
|
// make sure we have the correct values
|
|
|
|
if (ComponentbuilderHelper::checkArray($xproperty) && isset($xproperty['name']) && ComponentbuilderHelper::checkString($xproperty['name']) && isset($xproperty['value']))
|
|
|
|
{
|
|
|
|
// load the extra property
|
2018-09-24 14:37:51 +00:00
|
|
|
$bucket[] = "\t" . ComponentbuilderHelper::safeString($xproperty['name']) . '="' . str_replace('"', """, $xproperty['value']) . '"';
|
2018-04-13 15:24:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-09-24 14:37:51 +00:00
|
|
|
// load the PHP
|
|
|
|
foreach ($typephp as $x => $phpvalue)
|
2018-04-14 22:52:48 +00:00
|
|
|
{
|
2018-09-24 14:37:51 +00:00
|
|
|
// make sure we have a string
|
|
|
|
if (ComponentbuilderHelper::checkString($phpvalue))
|
|
|
|
{
|
|
|
|
// load the type_php property
|
|
|
|
$bucket[] = "\t" . 'type_php' . $x . '_1="__.o0=base64=Oo.__' . base64_encode($phpvalue) . '"';
|
|
|
|
}
|
2018-04-14 22:52:48 +00:00
|
|
|
}
|
2018-04-11 20:05:47 +00:00
|
|
|
// if the bucket has been loaded
|
|
|
|
if (ComponentbuilderHelper::checkArray($bucket))
|
|
|
|
{
|
2018-09-24 14:37:51 +00:00
|
|
|
$data['xml'] = "<field" . PHP_EOL . implode(PHP_EOL, $bucket) . PHP_EOL . "/>";
|
2018-04-11 20:05:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-30 20:28:43 +00:00
|
|
|
// Set the xml string to JSON string.
|
|
|
|
if (isset($data['xml']))
|
|
|
|
{
|
|
|
|
$data['xml'] = (string) json_encode($data['xml']);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the css_views string to base64 string.
|
|
|
|
if (isset($data['css_views']))
|
|
|
|
{
|
|
|
|
$data['css_views'] = base64_encode($data['css_views']);
|
|
|
|
}
|
|
|
|
|
2018-04-11 20:48:37 +00:00
|
|
|
// Set the css_view string to base64 string.
|
|
|
|
if (isset($data['css_view']))
|
2018-04-11 20:05:47 +00:00
|
|
|
{
|
2018-04-11 20:48:37 +00:00
|
|
|
$data['css_view'] = base64_encode($data['css_view']);
|
2018-04-11 20:05:47 +00:00
|
|
|
}
|
|
|
|
|
2018-04-23 12:47:19 +00:00
|
|
|
// Set the javascript_view_footer string to base64 string.
|
|
|
|
if (isset($data['javascript_view_footer']))
|
|
|
|
{
|
|
|
|
$data['javascript_view_footer'] = base64_encode($data['javascript_view_footer']);
|
|
|
|
}
|
|
|
|
|
2018-04-11 20:48:37 +00:00
|
|
|
// Set the javascript_views_footer string to base64 string.
|
|
|
|
if (isset($data['javascript_views_footer']))
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
2018-04-11 20:48:37 +00:00
|
|
|
$data['javascript_views_footer'] = base64_encode($data['javascript_views_footer']);
|
2016-01-30 20:28:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set the Params Items to data
|
|
|
|
if (isset($data['params']) && is_array($data['params']))
|
|
|
|
{
|
|
|
|
$params = new JRegistry;
|
|
|
|
$params->loadArray($data['params']);
|
|
|
|
$data['params'] = (string) $params;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Alter the uniqe field for save as copy
|
2017-02-01 13:17:04 +00:00
|
|
|
if ($input->get('task') === 'save2copy')
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
// Automatic handling of other uniqe fields
|
|
|
|
$uniqeFields = $this->getUniqeFields();
|
|
|
|
if (ComponentbuilderHelper::checkArray($uniqeFields))
|
|
|
|
{
|
|
|
|
foreach ($uniqeFields as $uniqeField)
|
|
|
|
{
|
|
|
|
$data[$uniqeField] = $this->generateUniqe($uniqeField,$data[$uniqeField]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (parent::save($data))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to generate a uniqe value.
|
|
|
|
*
|
|
|
|
* @param string $field name.
|
|
|
|
* @param string $value data.
|
|
|
|
*
|
|
|
|
* @return string New value.
|
|
|
|
*
|
|
|
|
* @since 3.0
|
|
|
|
*/
|
|
|
|
protected function generateUniqe($field,$value)
|
|
|
|
{
|
|
|
|
|
|
|
|
// set field value uniqe
|
|
|
|
$table = $this->getTable();
|
|
|
|
|
|
|
|
while ($table->load(array($field => $value)))
|
|
|
|
{
|
|
|
|
$value = JString::increment($value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-05-26 10:03:08 +00:00
|
|
|
* Method to change the title
|
|
|
|
*
|
|
|
|
* @param string $title The title.
|
|
|
|
*
|
|
|
|
* @return array Contains the modified title and alias.
|
|
|
|
*
|
|
|
|
*/
|
2016-02-26 12:46:15 +00:00
|
|
|
protected function _generateNewTitle($title)
|
2016-01-30 20:28:43 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
// Alter the title
|
|
|
|
$table = $this->getTable();
|
|
|
|
|
|
|
|
while ($table->load(array('title' => $title)))
|
|
|
|
{
|
|
|
|
$title = JString::increment($title);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $title;
|
|
|
|
}
|
|
|
|
}
|