Source for file weblinks.php

Documentation is available at weblinks.php

  1. <?php
  2. /**
  3.  * @package     Joomla.Administrator
  4.  * @subpackage  com_weblinks
  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.  * Weblinks list controller class.
  14.  *
  15.  * @package     Joomla.Administrator
  16.  * @subpackage  com_weblinks
  17.  * @since       1.6
  18.  */
  19. {
  20.     /**
  21.      * Proxy for getModel.
  22.      * @since   1.6
  23.      */
  24.     public function getModel($name 'Weblink'$prefix 'WeblinksModel'$config array('ignore_request' => true))
  25.     {
  26.         $model parent::getModel($name$prefix$config);
  27.         return $model;
  28.     }
  29.  
  30.     /**
  31.      * Method to provide child classes the opportunity to process after the delete task.
  32.      *
  33.      * @param   JModelLegacy   $model   The model for the component
  34.      * @param   mixed          $ids     array of ids deleted.
  35.      *
  36.      * @return  void 
  37.      *
  38.      * @since   3.1
  39.      */
  40.     protected function postDeleteHook(JModelLegacy $model$ids null)
  41.     {
  42.     }
  43. }

Documentation generated on Tue, 19 Nov 2013 15:18:32 +0100 by phpDocumentor 1.4.3