/**
  * Get TITLE of the page
  * 
  * @access public
  * @static
  * @param string $page
  * @param boolean $usecache use toc cache or not
  * @return string|null TITLE or null
  * @uses PluginSonotsToc
  */
 function title($page, $usecache = true)
 {
     $toc = new PluginSonotsToc($page, $usecache);
     return $toc->get_title();
 }