ZBlogPHP::CheckItemToNavbar PHP Method

CheckItemToNavbar() public method

检查条目是否在导航菜单中
public CheckItemToNavbar ( string $type = 'item', $id ) : boolean
$type string
$id
return boolean
    public function CheckItemToNavbar($type = 'item', $id)
    {
        if (!$type) {
            $type = 'item';
        }
        $m = $this->modulesbyfilename['navbar'];
        $s = $m->Content;
        return (bool) strpos($s, 'id="navbar-' . $type . '-' . $id . '"');
    }
ZBlogPHP