PATH:
home
/
centosnipponia
/
public_html
/
nipponiacom2
/
caribe
/
libraries
/
cms
/
form
/
field
<?php /** * @package Joomla.Libraries * @subpackage Form * * @copyright Copyright (C) 2005 - 2015 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 * * @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' ); }
[+]
..
[-] author.php
[edit]
[-] captcha.php
[edit]
[-] chromestyle.php
[edit]
[-] contenthistory.php
[edit]
[-] contentlanguage.php
[edit]
[-] contenttype.php
[edit]
[-] editor.php
[edit]
[-] headertag.php
[edit]
[-] helpsite.php
[edit]
[-] index.html
[edit]
[-] limitbox.php
[edit]
[-] media.php
[edit]
[-] menu.php
[edit]
[-] menuitem.php
[edit]
[-] moduleorder.php
[edit]
[-] moduleposition.php
[edit]
[-] moduletag.php
[edit]
[-] ordering.php
[edit]
[-] registrationdaterange.php
[edit]
[-] status.php
[edit]
[-] tag.php
[edit]
[-] templatestyle.php
[edit]
[-] user.php
[edit]
[-] useractive.php
[edit]
[-] usergrouplist.php
[edit]
[-] userstate.php
[edit]
[-] .htaccess.disabled
[edit]