* @package entries * @version 1 * @link http://www.zentao.net */ class docsEntry extends entry { /** * GET method. * * @access public * @return string */ public function get($libID = 0) { if(empty($libID)) $libID = $this->param('lib', 0); if(empty($libID)) return $this->sendError(400, 'Need lib id.'); $docTree = $this->loadModel('doc')->getDocTree($libID); foreach($docTree as $i => $module) { if(empty($module->id)) { unset($docTree[$i]); foreach($module->children as $doc) $docTree[] = $doc; } } return $this->send(200, array('docs' => array_values($docTree))); } }