. */ namespace Xibo\Helper; /** * Static class to reference statuses. */ class Status { // Widget statuses. public static $STATUS_VALID = 1; public static $STATUS_PLAYER = 2; public static $STATUS_NOT_BUILT = 3; public static $STATUS_INVALID = 4; }