Source for file pluginordering.php
Documentation is available at pluginordering.php
* @package Joomla.Administrator
* @subpackage com_plugins
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
* Supports an HTML select list of plugins
* @package Joomla.Administrator
* @subpackage com_plugins
protected $type =
'Pluginordering';
* Builds the query for the ordering list.
* @return JDatabaseQuery The query for the ordering form field
$folder =
$this->form->getValue('folder');
// Build the query for the ordering list.
$query =
$db->getQuery(true)
->select(array($db->quoteName('ordering', 'value'), $db->quoteName('name', 'text'), $db->quoteName('type'), $db->quote('folder'), $db->quote('extension_id')))
->from($db->quoteName('#__extensions'))
->where('(type =' .
$db->quote('plugin') .
'AND folder=' .
$db->quote($folder) .
')')
* Retrieves the current Item's Id.
* @return integer The current item ID
return (int)
$this->form->getValue('extension_id');
Documentation generated on Tue, 19 Nov 2013 15:10:49 +0100 by phpDocumentor 1.4.3