# css-javascript-toolbox/9.3/framework/events/observers/observer.interface.php

CSS &amp; JavaScript Toolbox, version 9.3. 24 lines.

- Page: https://pluginprobe.com/plugins/css-javascript-toolbox/9.3/code/framework/events/observers/observer.interface.php
- Raw: https://pluginprobe.com/plugins/css-javascript-toolbox/9.3/raw/framework/events/observers/observer.interface.php
- Modified: 2019-08-02T13:17:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/css-javascript-toolbox/9.3/code/framework/events/observers/observer.interface.php#L10-L20`.

```php
<?php
/**
* 
*/

/**
* 
*/
interface CJTIObserver {
	
	/**
	* put your comment there...
	* 
	* @param mixed $name
	*/
	public function getFilter($name);
	
	/**
	* put your comment there...
	* 
	*/
	public function trigger();
	
} // End interface.
```
