Code Search for Developers
 
 
  

Filter.php from Brim at Krugle


Show Filter.php syntax highlighted

<?php

/**
* 
* Abstract Savant_Filter class.  You have to extend this class for it to
* be useful; e.g., "class Savant_Filter_example extends Savant_Filter".
* 
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.
*
* @license http://www.gnu.org/copyleft/lesser.html LGPL
* 
* @author Paul M. Jones <pmjones@ciaweb.net>
* 
* @package Savant
* 
* @version $Id: Filter.php 13 2005-02-09 11:58:38Z barrel $
* 
*/

class Savant_Filter {
	
	/**
	* 
	* A reference to the calling Savant object.
	* 
	* @access public
	* 
	* @var object
	* 
	*/
	
	var $savant;
	
	
	/**
	* 
	* Constructor.  If your extended class is static (which is the
	* default), you don't need to deal with this at all.
	* 
	* @access public
	* 
	* @param object &$savant A reference to the calling Savant object.
	* 
	*/
	
	function Savant_Filter(&$savant)
	{
		$this->savant =& $savant;
		return;
	}
}
?>




See more files for this project here

Brim

BRIM is a MVC framework, written in PHP and based on items with a hierarchical relationship. The list of plugins make BRIM a Information Manager with plugins like bookmarks, a calendar, contacts tasks, notes, RSS etc. The application is multilingual.

Project homepage: http://sourceforge.net/projects/brim
Programming language(s): JavaScript,PHP,SQL
License: other

  docs/
    README
    index.php
  filters/
    Savant_Filter_colorizeCode.php
    Savant_Filter_trimwhitespace.php
    index.php
  plugins/
    Savant_Plugin_ahref.php
    Savant_Plugin_checkbox.php
    Savant_Plugin_checkboxes.php
    Savant_Plugin_cycle.php
    Savant_Plugin_dateformat.php
    Savant_Plugin_image.php
    Savant_Plugin_input.php
    Savant_Plugin_javascript.php
    Savant_Plugin_modify.php
    Savant_Plugin_options.php
    Savant_Plugin_radios.php
    Savant_Plugin_stylesheet.php
    Savant_Plugin_textarea.php
    index.php
  Filter.php
  Plugin.php
  index.php