Files
Rusty Shackleford af24bd579f Initial commit
2014-05-24 05:27:14 +04:00

10 lines
240 B
PHP

<?php
final class Page {
const NONE = 0; # no type
const IDLE = 1; # static page
const FUNC = 2; # dynamic page (dynamic)
const NODE = 3; # board page (dynamic)
const WIRE = 4; # board thread (static)
const NCIS = 5; # service page
}