/** * Returns a list of all available actions * * @return dataset */ public function Get() { if (empty(self::$_Actions)) { self::$_Actions = $this->SQL->Select()->From('Action')->OrderBy('Sort')->Get()->Result(); } return self::$_Actions; }