Файловый менеджер - Редактировать - /home/lmsyaran/public_html/administrator/components/com_moojla/models/enrolments.php
Назад
<?php /*----------------------------------------------------------------------------------| www.vdm.io |----/ Lmskaran /-------------------------------------------------------------------------------------------------------/ @version 1.0.77 @build 6th April, 2022 @created 22nd July, 2020 @package Moojla @subpackage enrolments.php @author Lmskaran <http://Lmskaran.com> @copyright Copyright (C) 2015. All Rights Reserved @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html ____ _____ _____ __ __ __ __ ___ _____ __ __ ____ _____ _ _ ____ _ _ ____ (_ _)( _ )( _ )( \/ )( ) /__\ / __)( _ )( \/ )( _ \( _ )( \( )( ___)( \( )(_ _) .-_)( )(_)( )(_)( ) ( )(__ /(__)\ ( (__ )(_)( ) ( )___/ )(_)( ) ( )__) ) ( )( \____) (_____)(_____)(_/\/\_)(____)(__)(__) \___)(_____)(_/\/\_)(__) (_____)(_)\_)(____)(_)\_) (__) /------------------------------------------------------------------------------------------------------*/ // No direct access to this file defined('_JEXEC') or die('Restricted access'); use Joomla\Utilities\ArrayHelper; /** * Enrolments Model */ class MoojlaModelEnrolments extends JModelList { public function __construct($config = array()) { if (empty($config['filter_fields'])) { $config['filter_fields'] = array( 'a.id','id', 'a.published','published', 'a.ordering','ordering', 'a.created_by','created_by', 'a.modified_by','modified_by', 'a.role','role', 'g.fullname','moojlacourse', 'h.name','jid', 'a.enrolldate','enrolldate' ); } parent::__construct($config); } /** * Method to auto-populate the model state. * * Note. Calling getState in this method will result in recursion. * * @param string $ordering An optional ordering field. * @param string $direction An optional direction (asc|desc). * * @return void * */ protected function populateState($ordering = null, $direction = null) { $app = JFactory::getApplication(); // Adjust the context to support modal layouts. if ($layout = $app->input->get('layout')) { $this->context .= '.' . $layout; } // Check if the form was submitted $formSubmited = $app->input->post->get('form_submited'); $access = $this->getUserStateFromRequest($this->context . '.filter.access', 'filter_access', 0, 'int'); if ($formSubmited) { $access = $app->input->post->get('access'); $this->setState('filter.access', $access); } $published = $this->getUserStateFromRequest($this->context . '.filter.published', 'filter_published', ''); $this->setState('filter.published', $published); $created_by = $this->getUserStateFromRequest($this->context . '.filter.created_by', 'filter_created_by', ''); $this->setState('filter.created_by', $created_by); $created = $this->getUserStateFromRequest($this->context . '.filter.created', 'filter_created'); $this->setState('filter.created', $created); $sorting = $this->getUserStateFromRequest($this->context . '.filter.sorting', 'filter_sorting', 0, 'int'); $this->setState('filter.sorting', $sorting); $search = $this->getUserStateFromRequest($this->context . '.filter.search', 'filter_search'); $this->setState('filter.search', $search); $role = $this->getUserStateFromRequest($this->context . '.filter.role', 'filter_role'); if ($formSubmited) { $role = $app->input->post->get('role'); $this->setState('filter.role', $role); } $moojlacourse = $this->getUserStateFromRequest($this->context . '.filter.moojlacourse', 'filter_moojlacourse'); if ($formSubmited) { $moojlacourse = $app->input->post->get('moojlacourse'); $this->setState('filter.moojlacourse', $moojlacourse); } $jid = $this->getUserStateFromRequest($this->context . '.filter.jid', 'filter_jid'); if ($formSubmited) { $jid = $app->input->post->get('jid'); $this->setState('filter.jid', $jid); } $enrolldate = $this->getUserStateFromRequest($this->context . '.filter.enrolldate', 'filter_enrolldate'); if ($formSubmited) { $enrolldate = $app->input->post->get('enrolldate'); $this->setState('filter.enrolldate', $enrolldate); } // List state information. parent::populateState($ordering, $direction); } /** * Method to get an array of data items. * * @return mixed An array of data items on success, false on failure. */ public function getItems() { // check in items $this->checkInNow(); // load parent items $items = parent::getItems(); // set selection value to a translatable value if (MoojlaHelper::checkArray($items)) { foreach ($items as $nr => &$item) { // convert role $item->role = $this->selectionTranslation($item->role, 'role'); } } // return items return $items; } /** * Method to convert selection values to translatable string. * * @return translatable string */ public function selectionTranslation($value,$name) { // Array of role language strings if ($name === 'role') { $roleArray = array( 0 => 'COM_MOOJLA_ENROLMENT_SELECT_AN_OPTION', 1 => 'COM_MOOJLA_ENROLMENT_MANAGER', 2 => 'COM_MOOJLA_ENROLMENT_COURSE_CREATOR', 3 => 'COM_MOOJLA_ENROLMENT_TEACHER', 4 => 'COM_MOOJLA_ENROLMENT_NONEDITING_TEACHER', 5 => 'COM_MOOJLA_ENROLMENT_STUDENT' ); // Now check if value is found in this array if (isset($roleArray[$value]) && MoojlaHelper::checkString($roleArray[$value])) { return $roleArray[$value]; } } return $value; } /** * Method to build an SQL query to load the list data. * * @return string An SQL query */ protected function getListQuery() { // Get the user object. $user = JFactory::getUser(); // Create a new query object. $db = JFactory::getDBO(); $query = $db->getQuery(true); // Select some fields $query->select('a.*'); // From the moojla_item table $query->from($db->quoteName('#__moojla_enrolment', 'a')); // From the moojla_course table. $query->select($db->quoteName('g.fullname','moojlacourse_fullname')); $query->join('LEFT', $db->quoteName('#__moojla_course', 'g') . ' ON (' . $db->quoteName('a.moojlacourse') . ' = ' . $db->quoteName('g.remoteid') . ')'); // From the users table. $query->select($db->quoteName('h.name','jid_name')); $query->join('LEFT', $db->quoteName('#__users', 'h') . ' ON (' . $db->quoteName('a.jid') . ' = ' . $db->quoteName('h.id') . ')'); // Filter by published state $published = $this->getState('filter.published'); if (is_numeric($published)) { $query->where('a.published = ' . (int) $published); } elseif ($published === '') { $query->where('(a.published = 0 OR a.published = 1)'); } // Filter by search. $search = $this->getState('filter.search'); if (!empty($search)) { if (stripos($search, 'id:') === 0) { $query->where('a.id = ' . (int) substr($search, 3)); } else { $search = $db->quote('%' . $db->escape($search) . '%'); $query->where('(a.moojlacourse LIKE '.$search.' OR g.fullname LIKE '.$search.' OR a.jid LIKE '.$search.' OR h.name LIKE '.$search.')'); } } // Filter by Role. $_role = $this->getState('filter.role'); if (is_numeric($_role)) { if (is_float($_role)) { $query->where('a.role = ' . (float) $_role); } else { $query->where('a.role = ' . (int) $_role); } } elseif (MoojlaHelper::checkString($_role)) { $query->where('a.role = ' . $db->quote($db->escape($_role))); } // Add the list ordering clause. $orderCol = $this->state->get('list.ordering', 'a.id'); $orderDirn = $this->state->get('list.direction', 'desc'); if ($orderCol != '') { $query->order($db->escape($orderCol . ' ' . $orderDirn)); } return $query; } /** * Method to get a store id based on model configuration state. * * @return string A store id. * */ protected function getStoreId($id = '') { // Compile the store id. $id .= ':' . $this->getState('filter.id'); $id .= ':' . $this->getState('filter.search'); $id .= ':' . $this->getState('filter.published'); $id .= ':' . $this->getState('filter.ordering'); $id .= ':' . $this->getState('filter.created_by'); $id .= ':' . $this->getState('filter.modified_by'); $id .= ':' . $this->getState('filter.role'); $id .= ':' . $this->getState('filter.moojlacourse'); $id .= ':' . $this->getState('filter.jid'); $id .= ':' . $this->getState('filter.enrolldate'); return parent::getStoreId($id); } /** * Build an SQL query to checkin all items left checked out longer then a set time. * * @return a bool * */ protected function checkInNow() { // Get set check in time $time = JComponentHelper::getParams('com_moojla')->get('check_in'); if ($time) { // Get a db connection. $db = JFactory::getDbo(); // reset query $query = $db->getQuery(true); $query->select('*'); $query->from($db->quoteName('#__moojla_enrolment')); $db->setQuery($query); $db->execute(); if ($db->getNumRows()) { // Get Yesterdays date $date = JFactory::getDate()->modify($time)->toSql(); // reset query $query = $db->getQuery(true); // Fields to update. $fields = array( $db->quoteName('checked_out_time') . '=\'0000-00-00 00:00:00\'', $db->quoteName('checked_out') . '=0' ); // Conditions for which records should be updated. $conditions = array( $db->quoteName('checked_out') . '!=0', $db->quoteName('checked_out_time') . '<\''.$date.'\'' ); // Check table $query->update($db->quoteName('#__moojla_enrolment'))->set($fields)->where($conditions); $db->setQuery($query); $db->execute(); } } return false; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0.09 |
proxy
|
phpinfo
|
Настройка