File manager - Edit - /home/jardides/www/Jardi-design/old/administrator/components/com_j2store/controllers/apps.php
Back
<?php /** * @package J2Store * @copyright Copyright (c)2014-17 Ramesh Elamathi / J2Store.org * @license GNU GPL v3 or later */ // No direct access to this file defined('_JEXEC') or die; class J2StoreControllerApps extends F0FController { protected $cacheableTasks = array(); public function execute($task) { $app = JFactory::getApplication(); $appTask = $app->input->getCmd('appTask', ''); $values = $app->input->getArray($_POST); // Check if we are in a report method view. If it is so, // Try lo load the report plugin controller (if any) if ( $task == "view" && $appTask != '' ) { $model = $this->getModel('Apps'); $id = $app->input->getInt('id', '0'); if(!$id) parent::execute($task); $model->setId($id); // get the data // not using getItem here to enable ->checkout (which requires JTable object) $row = $model->getTable(); $row->load( (int) $model->getId() ); $element = $row->element; // The name of the App Controller should be the same of the $_element name, // without the tool_ prefix and with the first letter Uppercase, and should // be placed into a controller.php file inside the root of the plugin // Ex: tool_standard => J2StoreControllerToolStandard in tool_standard/controller.php $controllerName = str_ireplace('app_', '', $element); $controllerName = ucfirst($controllerName); $path = JPATH_SITE.'/plugins/j2store/'; $controllerPath = $path.$element.'/'.$element.'/controller.php'; if (file_exists($controllerPath)) { require_once $controllerPath; } else { $controllerName = ''; } $className = 'J2StoreControllerApp'.$controllerName; if ($controllerName != '' && class_exists($className)){ // Create the controller $controller = new $className(); // Add the view Path $controller->addViewPath($path); // Perform the requested task $controller->execute( $appTask ); // Redirect if set by the controller $controller->redirect(); } else{ parent::execute($task); } } else{ parent::execute($task); } } function view(){ $model = $this->getThisModel(); $id = $this->input->getInt('id'); $row = $model->getItem($id); $view = $this->getThisView('App'); $view->setModel( $model, true ); $view->set('row', $row ); $view->setLayout( 'view' ); $view->display(); } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings