mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
cd8090d247
Includes the following large-scale changes: - Impoved barrier between model and view layers - Improved casting of scalar to relevant DBField types - Improved capabilities for rendering arbitrary data in templates
32 lines
529 B
PHP
32 lines
529 B
PHP
<?php
|
|
|
|
namespace SilverStripe\View\Tests\SSTemplateEngineCacheBlockTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
class TestModel extends DataObject implements TestOnly
|
|
{
|
|
private static $table_name = 'SSTemplateEngineCacheBlockTest_Model';
|
|
|
|
public function Test($arg = null)
|
|
{
|
|
return $this;
|
|
}
|
|
|
|
public function Foo()
|
|
{
|
|
return 'Bar';
|
|
}
|
|
|
|
public function True()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function False()
|
|
{
|
|
return false;
|
|
}
|
|
}
|