input->get("offset", 0); $view = new View("media.rss"); $view->item = $parent; // @todo create a descendent child method on ORM_MTPP to get all of the children // $view->children = $parent->descendents(); } /** * @see Rest_Controller::_update() */ public function _update($resource) { throw new Exception("@todo Item_Controller::_update NOT IMPLEMENTED"); } /** * @see Rest_Controller::_delete() */ public function _delete($resource) { throw new Exception("@todo Item_Controller::_delete NOT IMPLEMENTED"); } /** * @see Rest_Controller::_form_add() */ public function _form_add($parameter) { throw new Exception("@todo Item_Controller::_form_add NOT IMPLEMENTED"); } /** * @see Rest_Controller::_form_edit() */ public function _form_edit($resource) { throw new Exception("@todo Item_Controller::_form_edit NOT IMPLEMENTED"); } protected function get_output_format() { return "mediarss"; } }