ГлавнаяJoomlaJoomla administrator редирект на главную
administrator/components/com_redirect/helpers/redirect.php. Joomla administrator редирект на главную
administrator/components/com_redirect/helpers/redirect.php *Документация по Joomla 3.0.2
Вернуться к записям по теме Joomla. <?php /** * @package Joomla.Administrator * @subpackage com_redirect * * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * Redirect component helper. * * @package Joomla.Administrator * @subpackage com_redirect * @since 1.6 */ class RedirectHelper { public static $extension = 'com_redirect'; /** * Configure the Linkbar. * * @param string The name of the active view. */ public static function addSubmenu($vName) { // No submenu for this component. } /** * Gets a list of the actions that can be performed. * * @return JObject */ public static function getActions() { $user = JFactory::getUser(); $result = new JObject; $assetName = 'com_redirect'; $actions = JAccess::getActions($assetName); foreach ($actions as $action) { $result->set($action->name, $user->authorise($action->name, $assetName)); } return $result; } /** * Returns an array of standard published state filter options. * * @return string The HTML code for the select tag */ public static function publishedOptions() { // Build the active state filter options. $options = array(); $options[] = JHtml::_('select.option', '*', 'JALL'); $options[] = JHtml::_('select.option', '1', 'JENABLED'); $options[] = JHtml::_('select.option', '0', 'JDISABLED'); $options[] = JHtml::_('select.option', '2', 'JARCHIVED'); $options[] = JHtml::_('select.option', '-2', 'JTRASHED'); return $options; } /** * Determines if the plugin for Redirect to work is enabled. * * @return boolean */ public static function isEnabled() { $db = JFactory::getDbo(); $db->setQuery( 'SELECT enabled' . ' FROM #__extensions' . ' WHERE folder = '.$db->quote('system'). ' AND element = '.$db->quote('redirect') ); try { $result = (boolean) $db->loadResult(); } catch (RuntimeException $e) { JError::raiseWarning(500, $e->getMessage()); } return $result; } } Вернуться к записям по теме Joomla.
ya.samposebe.ru
administrator/components/com_redirect/helpers/redirect.php (Документация по Joomla 1.7)
Вернуться к записям по теме Joomla. <?php /** * @version $Id: redirect.php 22338 2011-11-04 17:24:53Z github_bot $ * @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ // No direct access. defined('_JEXEC') or die; /** * Redirect component helper. * * @package Joomla.Administrator * @subpackage com_redirect * @since 1.6 */ class RedirectHelper { public static $extension = 'com_redirect'; /** * Configure the Linkbar. * * @param string The name of the active view. */ public static function addSubmenu($vName) { // No submenu for this component. } /** * Gets a list of the actions that can be performed. * * @return JObject */ public static function getActions() { $user = JFactory::getUser(); $result = new JObject; $assetName = 'com_redirect'; $actions = array( 'core.admin', 'core.manage', 'core.create', 'core.edit', 'core.edit.state', 'core.delete' ); foreach ($actions as $action) { $result->set($action, $user->authorise($action, $assetName)); } return $result; } /** * Returns an array of standard published state filter options. * * @return string The HTML code for the select tag */ public static function publishedOptions() { // Build the active state filter options. $options = array(); $options[] = JHtml::_('select.option', '*', 'JALL'); $options[] = JHtml::_('select.option', '1', 'JENABLED'); $options[] = JHtml::_('select.option', '0', 'JDISABLED'); $options[] = JHtml::_('select.option', '2', 'JARCHIVED'); $options[] = JHtml::_('select.option', '-2', 'JTRASHED'); return $options; } /** * Determines if the plugin for Redirect to work is enabled. * * @return boolean */ public static function isEnabled() { $db = JFactory::getDbo(); $db->setQuery( 'SELECT enabled' . ' FROM #__extensions' . ' WHERE folder = '.$db->quote('system'). ' AND element = '.$db->quote('redirect') ); $result = (boolean) $db->loadResult(); if ($error = $db->getErrorMsg()) { JError::raiseWarning(500, $error); } return $result; } } Вернуться к записям по теме Joomla.
ya.samposebe.ru
RedirectController *Документация по Joomla 3.0.2
Вернуться к записям по теме Joomla.
Joomla.Administrator\RedirectController
administrator/components/com_redirect/controller.php at line 19 JObject└─JControllerLegacy└─RedirectController
public class RedirectControllerextends JControllerLegacy
Subpackage: com_redirect Since: 1.6
Fields inherited from Joomla.Legacy\JControllerLegacy
administrator/components/com_redirect/controller.php at line 25
default_view
protected string The default view. $default_view = 'links'
Method Detail
administrator/components/com_redirect/controller.php at line 36
display
public JController display(boolean If, array An, bool cachable, bool urlparams)
Method to display a view.
Parameters: If - true, the view output will be cached An - array of safe url parameters and their variable types, for valid values see {@link JFilterInput::clean()}. Returns: This object to support chaining. Since: 1.5 Вернуться к записям по теме Joomla.