CroogoNav::remove PHP Method

remove() public static method

Remove a menu item
public static remove ( string $path ) : void
$path string dot separated path in the array.
return void
    public static function remove($path)
    {
        self::$_items = Hash::remove(self::$_items, $path);
    }