blob: 25c493ca8158f6e99bc69d91d3d05e06fe13128e [file] [log] [blame]
<?php
class OverrideCustomFunction implements ezcTemplateCustomFunction
{
public static function getCustomFunctionDefinition( $name )
{
if ( $name == "override" )
{
$def = new ezcTemplateCustomFunctionDefinition();
$def->class = __CLASS__;
$def->method = "override";
return $def;
}
}
public static function override()
{
return new OverrideLocation( "override_test" ); // Refer to override_test.ezt
}
}
class OverrideLocation implements ezcTemplateLocationInterface
{
private $keys = array();
private $path;
public function __construct( $path )
{
$this->path = $path;
}
public function getPath()
{
return $this->path . ".ezt";
}
}
class OverrideCustomFunctionNew implements ezcTemplateCustomFunction
{
public static function getCustomFunctionDefinition( $name )
{
if ( $name == "override" )
{
$def = new ezcTemplateCustomFunctionDefinition();
$def->class = __CLASS__;
$def->method = "override";
return $def;
}
}
public static function override()
{
return new OverrideLocationNew( "override_test" ); // Refer to override_test.ezt
}
}
class OverrideLocationNew implements ezcTemplateLocation
{
private $keys = array();
private $path;
public function __construct( $path )
{
$this->path = $path;
}
public function getPath()
{
return $this->path . ".ezt";
}
}
class PathResolver implements ezcTemplateLocator
{
public function translatePath( $path )
{
return 'overridden/'. $path;
}
}
?>