0byt3m1n1
Path:
/
data
/
49
/
4
/
11
/
84
/
4826899
/
user
/
5715128
/
htdocs
/
soulsymbols
/
libraries
/
cms
/
form
/
field
/
[
Home
]
File: status.php
<?php /** * @package Joomla.Libraries * @subpackage Form * * @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ defined('JPATH_PLATFORM') or die; JFormHelper::loadFieldClass('predefinedlist'); /** * Form Field to load a list of states * * @package Joomla.Libraries * @subpackage Form * @since 3.2 */ class JFormFieldStatus extends JFormFieldPredefinedList { /** * The form field type. * * @var string * @since 3.2 */ public $type = 'Status'; /** * Available statuses * * @var array * @since 3.2 */ protected $predefinedOptions = array( '-2' => 'JTRASHED', '0' => 'JUNPUBLISHED', '1' => 'JPUBLISHED', '2' => 'JARCHIVED', '*' => 'JALL' ); }