Source for file plugins.php

Documentation is available at plugins.php

  1. <?php
  2. /**
  3.  * @package     Joomla.Administrator
  4.  * @subpackage  com_plugins
  5.  *
  6.  * @copyright   Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
  7.  * @license     GNU General Public License version 2 or later; see LICENSE.txt
  8.  */
  9.  
  10. defined('_JEXEC'or die;
  11.  
  12. /**
  13.  * Plugins list controller class.
  14.  *
  15.  * @package     Joomla.Administrator
  16.  * @subpackage  com_plugins
  17.  * @since       1.6
  18.  */
  19. {
  20.     /**
  21.      * Method to get a model object, loading it if required.
  22.      *
  23.      * @param   string  $name    The model name. Optional.
  24.      * @param   string  $prefix  The class prefix. Optional.
  25.      * @param   array   $config  Configuration array for model. Optional.
  26.      *
  27.      * @return  object  The model.
  28.      *
  29.      * @since   1.6
  30.      */
  31.     public function getModel($name 'Plugin'$prefix 'PluginsModel'$config array('ignore_request' => true))
  32.     {
  33.         $model parent::getModel($name$prefix$config);
  34.         return $model;
  35.     }
  36. }

Documentation generated on Tue, 19 Nov 2013 15:10:49 +0100 by phpDocumentor 1.4.3