A QCodo powered CMS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

63 lines
2.2 KiB

<?php
/**
* The PageStatusType class defined here contains
* code for the PageStatusType enumerated type. It represents
* the enumerated values found in the "page_status_type" table
* in the database.
*
* To use, you should use the PageStatusType subclass which
* extends this PageStatusTypeGen class.
*
* Because subsequent re-code generations will overwrite any changes to this
* file, you should leave this file unaltered to prevent yourself from losing
* any information or code changes. All customizations should be done by
* overriding existing or implementing new methods, properties and variables
* in the PageStatusType class.
*
* @package Quinta CMS
* @subpackage GeneratedDataObjects
*/
abstract class PageStatusTypeGen extends QBaseClass {
const Published = 1;
const Unpublished = 2;
const Draft = 3;
const Internal = 4;
const MaxId = 4;
public static $NameArray = array(
1 => 'Published',
2 => 'Unpublished',
3 => 'Draft',
4 => 'Internal');
public static $TokenArray = array(
1 => 'Published',
2 => 'Unpublished',
3 => 'Draft',
4 => 'Internal');
public static function ToString($intPageStatusTypeId) {
switch ($intPageStatusTypeId) {
case 1: return 'Published';
case 2: return 'Unpublished';
case 3: return 'Draft';
case 4: return 'Internal';
default:
throw new QCallerException(sprintf('Invalid intPageStatusTypeId: %s', $intPageStatusTypeId));
}
}
public static function ToToken($intPageStatusTypeId) {
switch ($intPageStatusTypeId) {
case 1: return 'Published';
case 2: return 'Unpublished';
case 3: return 'Draft';
case 4: return 'Internal';
default:
throw new QCallerException(sprintf('Invalid intPageStatusTypeId: %s', $intPageStatusTypeId));
}
}
}
?>