_content. * * @return boolean Returns true if the file is found, false otheriwse. */ abstract public function process_file(); /** * Standard constructor for basic files. * * @param Ai1ec_Registry_Object $registry * @param string $name * @param array $paths */ public function __construct( Ai1ec_Registry_Object $registry, $name, array $paths ) { parent::__construct( $registry ); $this->_paths = $paths; $this->_name = $name; } /** * Renders the content of the file to the screen. */ public function render() { echo $this->_content; } /** * @param bool $mute_output used for compatibility reason with old code. * * @return mixed the parsed content of the file. */ public function get_content( $mute_output = false ) { if ( true === $mute_output ) { return ''; } return $this->_content; } /** * Just in case you want to echo the object. */ public function __toString() { return $this->_content; } }