Source for file preview.php

Documentation is available at preview.php

  1. <?php
  2. /**
  3.  * @package     Joomla.Administrator
  4.  * @subpackage  com_contenthistory
  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.  * Contenthistory list controller class.
  14.  *
  15.  * @package     Joomla.Administrator
  16.  * @subpackage  com_contenthistory
  17.  * @since       3.2
  18.  */
  19. {
  20.     /**
  21.      * Proxy for getModel.
  22.      *
  23.      * @param   string  $name    The name of the model
  24.      * @param   string  $prefix  The prefix for the model
  25.      * @param   array   $config  An additional array of parameters
  26.      *
  27.      * @return  JModelLegacy  The model
  28.      *
  29.      * @since   3.2
  30.      */
  31.     public function getModel($name 'Preview'$prefix 'ContenthistoryModel'$config array('ignore_request' => true))
  32.     {
  33.         return parent::getModel($name$prefix$config);
  34.     }
  35. }

Documentation generated on Tue, 19 Nov 2013 15:11:13 +0100 by phpDocumentor 1.4.3