lithium\core\Libraries::applyFilter()

public static method
Replaced by `\lithium\aop\Filters::apply()` and `::clear()`.

Apply a closure to a method in Libraries.

Parameters

  • string $method

    The name of the method to apply the closure to.

  • Closure $filter

    The closure that is used to filter the method.

Returns

void

Source

	public static function applyFilter($method, $filter = null) {
		$message  = '`' . __METHOD__ . '()` has been deprecated in favor of ';
		$message .= '`\lithium\aop\Filters::apply()` and `::clear()`.';
		trigger_error($message, E_USER_DEPRECATED);

		$class = get_called_class();

		if ($method === false) {
			Filters::clear($class);
			return;
		}
		foreach ((array) $method as $m) {
			if ($filter === false) {
				Filters::clear($class, $m);
			} else {
				Filters::apply($class, $m, $filter);
			}
		}
	}