/administrator/components/com_languages/controllers/language.php
PHP | 35 lines | 9 code | 2 blank | 24 comment | 0 complexity | d0b0d41858675b92c9addd31f12cb805 MD5 | raw file
Possible License(s): LGPL-2.1
1<?php 2/** 3 * @package Joomla.Administrator 4 * @subpackage com_languages 5 * 6 * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved. 7 * @license GNU General Public License version 2 or later; see LICENSE.txt 8 */ 9 10defined('_JEXEC') or die; 11 12/** 13 * Languages list actions controller. 14 * 15 * @package Joomla.Administrator 16 * @subpackage com_languages 17 * @since 1.6 18 */ 19class LanguagesControllerLanguage extends JControllerForm 20{ 21 /** 22 * Gets the URL arguments to append to an item redirect. 23 * 24 * @param int $recordId The primary key id for the item. 25 * @param string $key The name of the primary key variable. 26 * 27 * @return string The arguments to append to the redirect URL. 28 * 29 * @since 1.6 30 */ 31 protected function getRedirectToItemAppend($recordId = null, $key = 'lang_id') 32 { 33 return parent::getRedirectToItemAppend($recordId, $key); 34 } 35}