ZBlogPHP::DelItemToNavbar PHP Method

DelItemToNavbar() public method

删除导航菜单中相应条目
public DelItemToNavbar ( string $type = 'item', $id )
$type string
$id
    public function DelItemToNavbar($type = 'item', $id)
    {
        if (!$type) {
            $type = 'item';
        }
        $m = $this->modulesbyfilename['navbar'];
        $s = $m->Content;
        $s = preg_replace('/<li id="navbar-' . $type . '-' . $id . '">.*?<\\/li>/', '', $s);
        $m->Content = $s;
        $m->Save();
    }
ZBlogPHP