/** * Determine if a documentation page exists. * * @param string $page * @return bool */ function document_exists($page) { return file_exists(doc_root() . $page . '.md'); }
function dbs_path() { $root_path = doc_root() . '/databases/' . db_domain(); if (!file_exists($root_path)) { mkdir($root_path); init_db_root($root_path); } return $root_path; }