Spade
Mini Shell
| Directory:~$ /home/lmsyaran/www/administrator/components/com_rsticketspro/models/ |
| [Home] [System Details] [Kill Me] |
<?php
/**
* @package RSTickets! Pro
*
* @copyright (c) 2010 - 2016 RSJoomla!
* @link https://www.rsjoomla.com
* @license GNU General Public License
http://www.gnu.org/licenses/gpl-3.0.en.html
*/
defined('_JEXEC') or die('Restricted access');
class RsticketsproModelNote extends JModelAdmin
{
public function getTable($type = 'Ticketnotes', $prefix =
'RsticketsproTable', $config = array())
{
return parent::getTable($type, $prefix, $config);
}
public function getForm($data = array(), $loadData = true)
{
// Get the form.
$form = $this->loadForm('com_rsticketspro.note',
'note', array('control' => 'jform',
'load_data' => $loadData));
if (empty($form))
{
return false;
}
$form->setValue('ticket_id', null,
$this->getTicketId());
return $form;
}
protected function loadFormData()
{
// Check the session for previously entered form data.
$app = JFactory::getApplication();
$data =
$app->getUserState('com_rsticketspro.edit.note.data',
array());
if (empty($data))
{
$data = $this->getItem();
}
return $data;
}
public function getTicketId()
{
return
JFactory::getApplication()->input->getInt('ticket_id');
}
protected function canDelete($record)
{
static $permissions;
static $userId;
if (is_null($permissions))
{
$permissions = RSTicketsProHelper::getCurrentPermissions();
}
if (is_null($userId))
{
$userId = JFactory::getUser()->id;
}
return ($permissions->delete_note && $record->user_id ==
$userId) || ($permissions->delete_note_staff &&
$record->user_id != $userId);
}
}