Habari\Options::delete PHP Метод

delete() публичный статический Метод

Shortcut to unset an option in the options table
public static delete ( string | array $name )
$name string | array The name of the option or an array of names to delete.
    public static function delete($name)
    {
        if (is_array($name)) {
            foreach ($name as $key) {
                Options::delete($key);
                // recursively wrap around ourselves!
            }
        } else {
            unset(self::instance()->{$name});
        }
    }