2021-04-24 06:42:47 +02:00
< ? php
/*--------------------------------------------------------------------------------------------------------| www . vdm . io |------/
__ __ _ _____ _ _ __ __ _ _ _
\ \ / / | | | __ \ | | | | | \ / | | | | | | |
\ \ / / _ _ ___ | | _ | | | | _____ _____ | | ___ _ __ _ __ ___ ___ _ __ | | _ | \ / | ___ | | _ | | __ ___ __ | |
\ \ / / _ ` / __| __| | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| | |\/| |/ _ \ __| ' _ \ / _ \ / _ ` |
\ / ( _ | \__ \ | _ | | __ | | __ / \ V / __ / | ( _ ) | | _ ) | | | | | | __ / | | | | _ | | | | __ / | _ | | | | ( _ ) | ( _ | |
\ / \__ , _ | ___ / \__ | | _____ / \___ | \_ / \___ | _ | \___ /| . __ /| _ | | _ | | _ | \___ | _ | | _ | \__ | | _ | | _ | \___ | \__ | _ | | _ | \___ / \__ , _ |
| |
| _ |
/-------------------------------------------------------------------------------------------------------------------------------/
2024-01-19 16:44:48 +02:00
@ version 3.0 . 0
@ build 19 th January , 2024
@ created 19 th January , 2024
2021-04-24 06:42:47 +02:00
@ package eHealth Portal
@ subpackage administration_part . php
2024-01-19 16:44:48 +02:00
@ author Llewellyn van der Merwe < https :// git . vdm . dev / joomla / eHealth - Portal >
2021-04-24 06:42:47 +02:00
@ copyright Copyright ( C ) 2020 Vast Development Method . All rights reserved .
@ license GNU / GPL Version 2 or later - http :// www . gnu . org / licenses / gpl - 2.0 . html
Portal for mobile health clinics
/-----------------------------------------------------------------------------------------------------------------------------*/
// No direct access to this file
defined ( '_JEXEC' ) or die ( 'Restricted access' );
2024-01-19 16:44:48 +02:00
use Joomla\CMS\Factory ;
use Joomla\CMS\Language\Text ;
use Joomla\CMS\Filter\InputFilter ;
use Joomla\CMS\Filter\OutputFilter ;
use Joomla\CMS\MVC\Model\AdminModel ;
use Joomla\CMS\Table\Table ;
use Joomla\CMS\UCM\UCMType ;
2021-04-24 06:42:47 +02:00
use Joomla\Registry\Registry ;
use Joomla\String\StringHelper ;
use Joomla\Utilities\ArrayHelper ;
2024-01-19 16:44:48 +02:00
use Joomla\CMS\Helper\TagsHelper ;
use VDM\Joomla\Utilities\ArrayHelper as UtilitiesArrayHelper ;
2021-04-24 06:42:47 +02:00
/**
2024-01-19 16:44:48 +02:00
* Ehealthportal Administration_part Admin Model
2021-04-24 06:42:47 +02:00
*/
2024-01-19 16:44:48 +02:00
class EhealthportalModelAdministration_part extends AdminModel
2021-04-24 06:42:47 +02:00
{
/**
* The tab layout fields array .
*
* @ var array
*/
protected $tabLayoutFields = array (
'details' => array (
'fullwidth' => array (
'description'
),
'above' => array (
'name' ,
'alias'
)
)
);
/**
* @ var string The prefix to use with controller messages .
* @ since 1.6
*/
2024-01-19 16:44:48 +02:00
protected $text_prefix = 'COM_EHEALTHPORTAL' ;
2021-04-24 06:42:47 +02:00
/**
* The type alias for this content type .
*
* @ var string
* @ since 3.2
*/
2024-01-19 16:44:48 +02:00
public $typeAlias = 'com_ehealthportal.administration_part' ;
2021-04-24 06:42:47 +02:00
/**
* 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 .
*
2024-01-19 16:44:48 +02:00
* @ return Table A database object
2021-04-24 06:42:47 +02:00
*
* @ since 1.6
*/
2024-01-19 16:44:48 +02:00
public function getTable ( $type = 'administration_part' , $prefix = 'EhealthportalTable' , $config = [])
2021-04-24 06:42:47 +02:00
{
// add table path for when model gets used from other component
2024-01-19 16:44:48 +02:00
$this -> addTablePath ( JPATH_ADMINISTRATOR . '/components/com_ehealthportal/tables' );
2021-04-24 06:42:47 +02:00
// get instance of the table
2024-01-19 16:44:48 +02:00
return Table :: getInstance ( $type , $prefix , $config );
2021-04-24 06:42:47 +02:00
}
2024-01-19 16:44:48 +02:00
2021-04-24 06:42:47 +02: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 ))
{
if ( ! empty ( $item -> params ) && ! is_array ( $item -> params ))
{
// 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 ();
}
}
$this -> administration_partvvvv = $item -> id ;
return $item ;
}
/**
* Method to get list data .
*
* @ return mixed An array of data items on success , false on failure .
*/
public function getVvyvaccines ()
{
// Get the user object.
2024-01-19 16:44:48 +02:00
$user = Factory :: getUser ();
2021-04-24 06:42:47 +02:00
// Create a new query object.
2024-01-19 16:44:48 +02:00
$db = Factory :: getDBO ();
2021-04-24 06:42:47 +02:00
$query = $db -> getQuery ( true );
// Select some fields
$query -> select ( 'a.*' );
2024-01-19 16:44:48 +02:00
// From the ehealthportal_immunisation_vaccine_type table
$query -> from ( $db -> quoteName ( '#__ehealthportal_immunisation_vaccine_type' , 'a' ));
2021-04-24 06:42:47 +02:00
2024-01-19 16:44:48 +02:00
// From the ehealthportal_administration_part table.
2021-04-24 06:42:47 +02:00
$query -> select ( $db -> quoteName ( 'g.name' , 'administration_part_name' ));
2024-01-19 16:44:48 +02:00
$query -> join ( 'LEFT' , $db -> quoteName ( '#__ehealthportal_administration_part' , 'g' ) . ' ON (' . $db -> quoteName ( 'a.administration_part' ) . ' = ' . $db -> quoteName ( 'g.id' ) . ')' );
2021-04-24 06:42:47 +02:00
// Filter by administration_partvvvv global.
$administration_partvvvv = $this -> administration_partvvvv ;
if ( is_numeric ( $administration_partvvvv ))
{
$query -> where ( 'a.administration_part = ' . ( int ) $administration_partvvvv );
}
elseif ( is_string ( $administration_partvvvv ))
{
$query -> where ( 'a.administration_part = ' . $db -> quote ( $administration_partvvvv ));
}
else
{
$query -> where ( 'a.administration_part = -5' );
}
// Join over the asset groups.
$query -> select ( 'ag.title AS access_level' );
$query -> join ( 'LEFT' , '#__viewlevels AS ag ON ag.id = a.access' );
// Filter by access level.
$_access = $this -> getState ( 'filter.access' );
if ( $_access && is_numeric ( $_access ))
{
$query -> where ( 'a.access = ' . ( int ) $_access );
}
2024-01-19 16:44:48 +02:00
elseif ( EhealthportalHelper :: checkArray ( $_access ))
2021-04-24 06:42:47 +02:00
{
// Secure the array for the query
$_access = ArrayHelper :: toInteger ( $_access );
// Filter by the Access Array.
$query -> where ( 'a.access IN (' . implode ( ',' , $_access ) . ')' );
}
// Implement View Level Access
2024-01-19 16:44:48 +02:00
if ( ! $user -> authorise ( 'core.options' , 'com_ehealthportal' ))
2021-04-24 06:42:47 +02:00
{
$groups = implode ( ',' , $user -> getAuthorisedViewLevels ());
$query -> where ( 'a.access IN (' . $groups . ')' );
}
// Order the results by ordering
$query -> order ( 'a.published ASC' );
$query -> order ( 'a.ordering ASC' );
// Load the items
$db -> setQuery ( $query );
$db -> execute ();
if ( $db -> getNumRows ())
{
$items = $db -> loadObjectList ();
return $items ;
}
return false ;
}
/**
* 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 .
* @ param array $options Optional array of options for the form creation .
*
* @ return mixed A JForm object on success , false on failure
*
* @ since 1.6
*/
2024-01-19 16:44:48 +02:00
public function getForm ( $data = [], $loadData = true , $options = array ( 'control' => 'jform' ))
2021-04-24 06:42:47 +02:00
{
// set load data option
$options [ 'load_data' ] = $loadData ;
// check if xpath was set in options
$xpath = false ;
if ( isset ( $options [ 'xpath' ]))
{
$xpath = $options [ 'xpath' ];
unset ( $options [ 'xpath' ]);
}
// check if clear form was set in options
$clear = false ;
if ( isset ( $options [ 'clear' ]))
{
$clear = $options [ 'clear' ];
unset ( $options [ 'clear' ]);
}
// Get the form.
2024-01-19 16:44:48 +02:00
$form = $this -> loadForm ( 'com_ehealthportal.administration_part' , 'administration_part' , $options , $clear , $xpath );
2021-04-24 06:42:47 +02:00
if ( empty ( $form ))
{
return false ;
}
2024-01-19 16:44:48 +02:00
$jinput = Factory :: getApplication () -> input ;
2021-04-24 06:42:47 +02:00
// 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' );
}
2024-01-19 16:44:48 +02:00
$user = Factory :: getUser ();
2021-04-24 06:42:47 +02:00
// Check for existing item.
// Modify the form based on Edit State access controls.
2024-01-19 16:44:48 +02:00
if ( $id != 0 && ( ! $user -> authorise ( 'core.edit.state' , 'com_ehealthportal.administration_part.' . ( int ) $id ))
|| ( $id == 0 && ! $user -> authorise ( 'core.edit.state' , 'com_ehealthportal' )))
2021-04-24 06:42:47 +02:00
{
// 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' );
}
// 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 );
}
// Modify the form based on Edit Creaded By access controls.
2024-01-19 16:44:48 +02:00
if ( ! $user -> authorise ( 'core.edit.created_by' , 'com_ehealthportal' ))
2021-04-24 06:42:47 +02:00
{
// 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.
2024-01-19 16:44:48 +02:00
if ( ! $user -> authorise ( 'core.edit.created' , 'com_ehealthportal' ))
2021-04-24 06:42:47 +02:00
{
// Disable fields for display.
$form -> setFieldAttribute ( 'created' , 'disabled' , 'true' );
// Disable fields while saving.
$form -> setFieldAttribute ( 'created' , 'filter' , 'unset' );
}
// Modify the form based on Edit Name access controls.
2024-01-19 16:44:48 +02:00
if ( $id != 0 && ( ! $user -> authorise ( 'administration_part.edit.name' , 'com_ehealthportal.administration_part.' . ( int ) $id ))
|| ( $id == 0 && ! $user -> authorise ( 'administration_part.edit.name' , 'com_ehealthportal' )))
2021-04-24 06:42:47 +02:00
{
// Disable fields for display.
$form -> setFieldAttribute ( 'name' , 'disabled' , 'true' );
// Disable fields for display.
$form -> setFieldAttribute ( 'name' , 'readonly' , 'true' );
// If there is no value continue.
if ( ! $form -> getValue ( 'name' ))
{
// Disable fields while saving.
$form -> setFieldAttribute ( 'name' , 'filter' , 'unset' );
// Disable fields while saving.
$form -> setFieldAttribute ( 'name' , 'required' , 'false' );
}
}
// Modify the form based on Edit Description access controls.
2024-01-19 16:44:48 +02:00
if ( $id != 0 && ( ! $user -> authorise ( 'administration_part.edit.description' , 'com_ehealthportal.administration_part.' . ( int ) $id ))
|| ( $id == 0 && ! $user -> authorise ( 'administration_part.edit.description' , 'com_ehealthportal' )))
2021-04-24 06:42:47 +02:00
{
// Disable fields for display.
$form -> setFieldAttribute ( 'description' , 'disabled' , 'true' );
// Disable fields for display.
$form -> setFieldAttribute ( 'description' , 'readonly' , 'true' );
// If there is no value continue.
if ( ! $form -> getValue ( 'description' ))
{
// Disable fields while saving.
$form -> setFieldAttribute ( 'description' , 'filter' , 'unset' );
// Disable fields while saving.
$form -> setFieldAttribute ( 'description' , 'required' , 'false' );
}
}
// Only load these values if no id is found
if ( 0 == $id )
{
// 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' );
if ( 0 != $redirectedValue && $redirectedField )
{
// Now set the local-redirected field default value
$form -> setValue ( $redirectedField , null , $redirectedValue );
}
}
2024-01-19 16:44:48 +02:00
// Only load the GUID if new item (or empty)
if ( 0 == $id || ! ( $val = $form -> getValue ( 'guid' )))
{
$form -> setValue ( 'guid' , null , EhealthportalHelper :: GUID ());
}
2021-04-24 06:42:47 +02:00
return $form ;
}
/**
* Method to get the script that have to be included on the form
*
2024-01-19 16:44:48 +02:00
* @ return string script files
2021-04-24 06:42:47 +02:00
*/
public function getScript ()
{
2024-01-19 16:44:48 +02:00
return 'media/com_ehealthportal/js/administration_part.js' ;
2021-04-24 06:42:47 +02:00
}
2024-01-19 16:44:48 +02:00
2021-04-24 06:42:47 +02:00
/**
* 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 ;
}
2024-01-19 16:44:48 +02:00
$user = Factory :: getUser ();
2021-04-24 06:42:47 +02:00
// The record has been set. Check the record permissions.
2024-01-19 16:44:48 +02:00
return $user -> authorise ( 'core.delete' , 'com_ehealthportal.administration_part.' . ( int ) $record -> id );
2021-04-24 06:42:47 +02: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 )
{
2024-01-19 16:44:48 +02:00
$user = Factory :: getUser ();
$recordId = $record -> id ? ? 0 ;
2021-04-24 06:42:47 +02:00
if ( $recordId )
{
// The record has been set. Check the record permissions.
2024-01-19 16:44:48 +02:00
$permission = $user -> authorise ( 'core.edit.state' , 'com_ehealthportal.administration_part.' . ( int ) $recordId );
2021-04-24 06:42:47 +02:00
if ( ! $permission && ! is_null ( $permission ))
{
return false ;
}
}
2024-01-19 16:44:48 +02:00
// In the absence of better information, revert to the component permissions.
2021-04-24 06:42:47 +02:00
return parent :: canEditState ( $record );
}
2024-01-19 16:44:48 +02:00
2021-04-24 06:42:47 +02:00
/**
* Method override to check if you can edit an existing record .
*
2024-01-19 16:44:48 +02:00
* @ param array $data An array of input data .
* @ param string $key The name of the key for the primary key .
2021-04-24 06:42:47 +02:00
*
2024-01-19 16:44:48 +02:00
* @ return boolean
* @ since 2.5
2021-04-24 06:42:47 +02:00
*/
2024-01-19 16:44:48 +02:00
protected function allowEdit ( $data = [], $key = 'id' )
2021-04-24 06:42:47 +02:00
{
// Check specific edit permission then general edit permission.
2024-01-19 16:44:48 +02:00
return Factory :: getUser () -> authorise ( 'core.edit' , 'com_ehealthportal.administration_part.' . (( int ) isset ( $data [ $key ]) ? $data [ $key ] : 0 )) or parent :: allowEdit ( $data , $key );
2021-04-24 06:42:47 +02:00
}
2024-01-19 16:44:48 +02:00
2021-04-24 06:42:47 +02:00
/**
* Prepare and sanitise the table data prior to saving .
*
2024-01-19 16:44:48 +02:00
* @ param Table $table A Table object .
2021-04-24 06:42:47 +02:00
*
* @ return void
*
* @ since 1.6
*/
protected function prepareTable ( $table )
{
2024-01-19 16:44:48 +02:00
$date = Factory :: getDate ();
$user = Factory :: getUser ();
2021-04-24 06:42:47 +02:00
if ( isset ( $table -> name ))
{
$table -> name = htmlspecialchars_decode ( $table -> name , ENT_QUOTES );
}
2024-01-19 16:44:48 +02:00
2021-04-24 06:42:47 +02:00
if ( isset ( $table -> alias ) && empty ( $table -> alias ))
{
$table -> generateAlias ();
}
2024-01-19 16:44:48 +02:00
2021-04-24 06:42:47 +02:00
if ( empty ( $table -> id ))
{
$table -> created = $date -> toSql ();
// set the user
if ( $table -> created_by == 0 || empty ( $table -> created_by ))
{
$table -> created_by = $user -> id ;
}
// Set ordering to the last item if not set
if ( empty ( $table -> ordering ))
{
2024-01-19 16:44:48 +02:00
$db = Factory :: getDbo ();
2021-04-24 06:42:47 +02:00
$query = $db -> getQuery ( true )
-> select ( 'MAX(ordering)' )
2024-01-19 16:44:48 +02:00
-> from ( $db -> quoteName ( '#__ehealthportal_administration_part' ));
2021-04-24 06:42:47 +02:00
$db -> setQuery ( $query );
$max = $db -> loadResult ();
$table -> ordering = $max + 1 ;
}
}
else
{
$table -> modified = $date -> toSql ();
$table -> modified_by = $user -> id ;
}
2024-01-19 16:44:48 +02:00
2021-04-24 06:42:47 +02:00
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
*/
2024-01-19 16:44:48 +02:00
protected function loadFormData ()
2021-04-24 06:42:47 +02:00
{
// Check the session for previously entered form data.
2024-01-19 16:44:48 +02:00
$data = Factory :: getApplication () -> getUserState ( 'com_ehealthportal.edit.administration_part.data' , []);
2021-04-24 06:42:47 +02:00
if ( empty ( $data ))
{
$data = $this -> getItem ();
// run the perprocess of the data
2024-01-19 16:44:48 +02:00
$this -> preprocessData ( 'com_ehealthportal.administration_part' , $data );
2021-04-24 06:42:47 +02:00
}
return $data ;
}
/**
* 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
*/
protected function getUniqueFields ()
{
2024-01-19 16:44:48 +02:00
return array ( 'guid' );
2021-04-24 06:42:47 +02:00
}
2024-01-19 16:44:48 +02:00
2021-04-24 06:42:47 +02:00
/**
* 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 ;
}
2024-01-19 16:44:48 +02:00
2021-04-24 06:42:47 +02:00
return true ;
}
/**
* 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 ;
}
2024-01-19 16:44:48 +02:00
2021-04-24 06:42:47 +02:00
return true ;
2024-01-19 16:44:48 +02:00
}
2021-04-24 06:42:47 +02: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 );
ArrayHelper :: toInteger ( $pks );
// Remove any values of zero.
if ( array_search ( 0 , $pks , true ))
{
unset ( $pks [ array_search ( 0 , $pks , true )]);
}
if ( empty ( $pks ))
{
2024-01-19 16:44:48 +02:00
$this -> setError ( Text :: _ ( 'JGLOBAL_NO_ITEM_SELECTED' ));
2021-04-24 06:42:47 +02:00
return false ;
}
$done = false ;
// Set some needed variables.
2024-01-19 16:44:48 +02:00
$this -> user = Factory :: getUser ();
$this -> table = $this -> getTable ();
$this -> tableClassName = get_class ( $this -> table );
$this -> contentType = new UCMType ;
$this -> type = $this -> contentType -> getTypeByTable ( $this -> tableClassName );
$this -> canDo = EhealthportalHelper :: getActions ( 'administration_part' );
$this -> batchSet = true ;
2021-04-24 06:42:47 +02:00
if ( ! $this -> canDo -> get ( 'core.batch' ))
{
2024-01-19 16:44:48 +02:00
$this -> setError ( Text :: _ ( 'JLIB_APPLICATION_ERROR_INSUFFICIENT_BATCH_INFORMATION' ));
2021-04-24 06:42:47 +02:00
return false ;
}
2024-01-19 16:44:48 +02:00
2021-04-24 06:42:47 +02:00
if ( $this -> type == false )
{
2024-01-19 16:44:48 +02:00
$type = new UCMType ;
2021-04-24 06:42:47 +02:00
$this -> type = $type -> getTypeByAlias ( $this -> typeAlias );
}
$this -> tagsObserver = $this -> table -> getObserverOfClass ( 'JTableObserverTags' );
if ( ! empty ( $commands [ 'move_copy' ]))
{
$cmd = ArrayHelper :: 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 )
{
2024-01-19 16:44:48 +02:00
$this -> setError ( Text :: _ ( 'JLIB_APPLICATION_ERROR_INSUFFICIENT_BATCH_INFORMATION' ));
2021-04-24 06:42:47 +02:00
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 .
*
* @ since 12.2
*/
protected function batchCopy ( $values , $pks , $contexts )
{
if ( empty ( $this -> batchSet ))
{
// Set some needed variables.
2024-01-19 16:44:48 +02:00
$this -> user = Factory :: getUser ();
2021-04-24 06:42:47 +02:00
$this -> table = $this -> getTable ();
$this -> tableClassName = get_class ( $this -> table );
2024-01-19 16:44:48 +02:00
$this -> canDo = EhealthportalHelper :: getActions ( 'administration_part' );
2021-04-24 06:42:47 +02:00
}
2024-01-19 16:44:48 +02:00
if ( ! $this -> canDo -> get ( 'core.create' ) && ! $this -> canDo -> get ( 'administration_part.batch' ))
2021-04-24 06:42:47 +02:00
{
return false ;
}
// get list of unique fields
$uniqueFields = $this -> getUniqueFields ();
// 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 ( 'core.edit.state' ))
{
$values [ 'published' ] = 0 ;
}
2024-01-19 16:44:48 +02:00
$newIds = [];
2021-04-24 06:42:47 +02:00
// 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 ( 'core.edit' , $contexts [ $pk ]))
{
// Not fatal error
2024-01-19 16:44:48 +02:00
$this -> setError ( Text :: sprintf ( 'JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND' , $pk ));
2021-04-24 06:42:47 +02:00
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
2024-01-19 16:44:48 +02:00
$this -> setError ( Text :: sprintf ( 'JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND' , $pk ));
2021-04-24 06:42:47 +02:00
continue ;
}
}
list ( $this -> table -> name , $this -> table -> alias ) = $this -> _generateNewTitle ( $this -> table -> alias , $this -> table -> name );
// insert all set values
2024-01-19 16:44:48 +02:00
if ( EhealthportalHelper :: checkArray ( $values ))
2021-04-24 06:42:47 +02:00
{
foreach ( $values as $key => $value )
{
if ( strlen ( $value ) > 0 && isset ( $this -> table -> $key ))
{
$this -> table -> $key = $value ;
}
}
}
// update all unique fields
2024-01-19 16:44:48 +02:00
if ( EhealthportalHelper :: checkArray ( $uniqueFields ))
2021-04-24 06:42:47 +02:00
{
foreach ( $uniqueFields as $uniqueField )
{
$this -> table -> $uniqueField = $this -> generateUnique ( $uniqueField , $this -> table -> $uniqueField );
}
}
// Reset the ID because we are making a copy
$this -> table -> id = 0 ;
// TODO: Deal with ordering?
// $this->table->ordering = 1;
// 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 ;
}
/**
* 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 .
*
* @ since 12.2
*/
protected function batchMove ( $values , $pks , $contexts )
{
if ( empty ( $this -> batchSet ))
{
// Set some needed variables.
2024-01-19 16:44:48 +02:00
$this -> user = Factory :: getUser ();
2021-04-24 06:42:47 +02:00
$this -> table = $this -> getTable ();
$this -> tableClassName = get_class ( $this -> table );
2024-01-19 16:44:48 +02:00
$this -> canDo = EhealthportalHelper :: getActions ( 'administration_part' );
2021-04-24 06:42:47 +02:00
}
2024-01-19 16:44:48 +02:00
if ( ! $this -> canDo -> get ( 'core.edit' ) && ! $this -> canDo -> get ( 'administration_part.batch' ))
2021-04-24 06:42:47 +02:00
{
2024-01-19 16:44:48 +02:00
$this -> setError ( Text :: _ ( 'JLIB_APPLICATION_ERROR_BATCH_CANNOT_EDIT' ));
2021-04-24 06:42:47 +02:00
return false ;
}
// make sure published only updates if user has the permission.
if ( isset ( $values [ 'published' ]) && ! $this -> canDo -> get ( 'core.edit.state' ))
{
unset ( $values [ 'published' ]);
}
// remove move_copy from array
unset ( $values [ 'move_copy' ]);
// Parent exists so we proceed
foreach ( $pks as $pk )
{
if ( ! $this -> user -> authorise ( 'core.edit' , $contexts [ $pk ]))
{
2024-01-19 16:44:48 +02:00
$this -> setError ( Text :: _ ( 'JLIB_APPLICATION_ERROR_BATCH_CANNOT_EDIT' ));
2021-04-24 06:42:47 +02:00
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
2024-01-19 16:44:48 +02:00
$this -> setError ( Text :: sprintf ( 'JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND' , $pk ));
2021-04-24 06:42:47 +02:00
continue ;
}
}
// insert all set values.
2024-01-19 16:44:48 +02:00
if ( EhealthportalHelper :: checkArray ( $values ))
2021-04-24 06:42:47 +02:00
{
foreach ( $values as $key => $value )
{
// Do special action for access.
if ( 'access' === $key && strlen ( $value ) > 0 )
{
$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 ;
}
2024-01-19 16:44:48 +02:00
2021-04-24 06:42:47 +02:00
/**
* Method to save the form data .
*
* @ param array $data The form data .
*
* @ return boolean True on success .
*
* @ since 1.6
*/
public function save ( $data )
{
2024-01-19 16:44:48 +02:00
$input = Factory :: getApplication () -> input ;
$filter = InputFilter :: getInstance ();
2021-04-24 06:42:47 +02:00
// set the metadata to the Item Data
if ( isset ( $data [ 'metadata' ]) && isset ( $data [ 'metadata' ][ 'author' ]))
{
$data [ 'metadata' ][ 'author' ] = $filter -> clean ( $data [ 'metadata' ][ 'author' ], 'TRIM' );
2024-01-19 16:44:48 +02:00
$metadata = new Registry ;
2021-04-24 06:42:47 +02:00
$metadata -> loadArray ( $data [ 'metadata' ]);
$data [ 'metadata' ] = ( string ) $metadata ;
}
2024-01-19 16:44:48 +02:00
// Set the GUID if empty or not valid
if ( empty ( $data [ 'guid' ]) && $data [ 'id' ] > 0 )
{
// get the existing one
$data [ 'guid' ] = ( string ) EhealthportalHelper :: getVar ( 'administration_part' , $data [ 'id' ], 'id' , 'guid' );
}
// Set the GUID if empty or not valid
while ( ! EhealthportalHelper :: validGUID ( $data [ 'guid' ], " administration_part " , $data [ 'id' ]))
{
// must always be set
$data [ 'guid' ] = ( string ) EhealthportalHelper :: GUID ();
}
2021-04-24 06:42:47 +02:00
// Set the Params Items to data
if ( isset ( $data [ 'params' ]) && is_array ( $data [ 'params' ]))
{
2024-01-19 16:44:48 +02:00
$params = new Registry ;
2021-04-24 06:42:47 +02:00
$params -> loadArray ( $data [ 'params' ]);
$data [ 'params' ] = ( string ) $params ;
}
// Alter the name for save as copy
if ( $input -> get ( 'task' ) === 'save2copy' )
{
$origTable = clone $this -> getTable ();
$origTable -> load ( $input -> getInt ( 'id' ));
if ( $data [ 'name' ] == $origTable -> name )
{
list ( $name , $alias ) = $this -> _generateNewTitle ( $data [ 'alias' ], $data [ 'name' ]);
$data [ 'name' ] = $name ;
$data [ 'alias' ] = $alias ;
}
else
{
if ( $data [ 'alias' ] == $origTable -> alias )
{
$data [ 'alias' ] = '' ;
}
}
$data [ 'published' ] = 0 ;
}
// Automatic handling of alias for empty fields
if ( in_array ( $input -> get ( 'task' ), array ( 'apply' , 'save' , 'save2new' )) && ( int ) $input -> get ( 'id' ) == 0 )
{
if ( $data [ 'alias' ] == null || empty ( $data [ 'alias' ]))
{
2024-01-19 16:44:48 +02:00
if ( Factory :: getConfig () -> get ( 'unicodeslugs' ) == 1 )
2021-04-24 06:42:47 +02:00
{
2024-01-19 16:44:48 +02:00
$data [ 'alias' ] = OutputFilter :: stringURLUnicodeSlug ( $data [ 'name' ]);
2021-04-24 06:42:47 +02:00
}
else
{
2024-01-19 16:44:48 +02:00
$data [ 'alias' ] = OutputFilter :: stringURLSafe ( $data [ 'name' ]);
2021-04-24 06:42:47 +02:00
}
2024-01-19 16:44:48 +02:00
$table = clone $this -> getTable ();
2021-04-24 06:42:47 +02:00
if ( $table -> load ( array ( 'alias' => $data [ 'alias' ])) && ( $table -> id != $data [ 'id' ] || $data [ 'id' ] == 0 ))
{
2024-01-19 16:44:48 +02:00
$msg = Text :: _ ( 'COM_EHEALTHPORTAL_ADMINISTRATION_PART_SAVE_WARNING' );
2021-04-24 06:42:47 +02:00
}
$data [ 'alias' ] = $this -> _generateNewTitle ( $data [ 'alias' ]);
if ( isset ( $msg ))
{
2024-01-19 16:44:48 +02:00
Factory :: getApplication () -> enqueueMessage ( $msg , 'warning' );
2021-04-24 06:42:47 +02:00
}
}
}
// Alter the unique field for save as copy
if ( $input -> get ( 'task' ) === 'save2copy' )
{
// Automatic handling of other unique fields
$uniqueFields = $this -> getUniqueFields ();
2024-01-19 16:44:48 +02:00
if ( UtilitiesArrayHelper :: check ( $uniqueFields ))
2021-04-24 06:42:47 +02:00
{
foreach ( $uniqueFields as $uniqueField )
{
$data [ $uniqueField ] = $this -> generateUnique ( $uniqueField , $data [ $uniqueField ]);
}
}
}
2024-01-19 16:44:48 +02:00
2021-04-24 06:42:47 +02:00
if ( parent :: save ( $data ))
{
return true ;
}
return false ;
}
2024-01-19 16:44:48 +02:00
2021-04-24 06:42:47 +02:00
/**
* Method to generate a unique value .
*
* @ param string $field name .
* @ param string $value data .
*
* @ return string New value .
*
* @ since 3.0
*/
protected function generateUnique ( $field , $value )
{
// set field value unique
$table = $this -> getTable ();
while ( $table -> load ( array ( $field => $value )))
{
$value = StringHelper :: increment ( $value );
}
return $value ;
}
/**
* Method to change the title / s & alias .
*
* @ param string $alias The alias .
* @ param string / array $title The title .
*
* @ return array / string Contains the modified title / s and / or alias .
*
*/
protected function _generateNewTitle ( $alias , $title = null )
{
// Alter the title/s & alias
$table = $this -> getTable ();
2024-01-19 16:44:48 +02:00
while ( $table -> load ([ 'alias' => $alias ]))
2021-04-24 06:42:47 +02:00
{
// Check if this is an array of titles
2024-01-19 16:44:48 +02:00
if ( UtilitiesArrayHelper :: check ( $title ))
2021-04-24 06:42:47 +02:00
{
foreach ( $title as $nr => & $_title )
{
$_title = StringHelper :: increment ( $_title );
}
}
// Make sure we have a title
elseif ( $title )
{
$title = StringHelper :: increment ( $title );
}
$alias = StringHelper :: increment ( $alias , 'dash' );
}
// Check if this is an array of titles
2024-01-19 16:44:48 +02:00
if ( UtilitiesArrayHelper :: check ( $title ))
2021-04-24 06:42:47 +02:00
{
$title [] = $alias ;
return $title ;
}
// Make sure we have a title
elseif ( $title )
{
return array ( $title , $alias );
}
// We only had an alias
return $alias ;
}
}