2016-10-14 03:30:05 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace SilverStripe\View\Tests\SSViewerTest;
|
|
|
|
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
use SilverStripe\View\ViewableData;
|
|
|
|
|
|
|
|
class TestViewableData extends ViewableData implements TestOnly
|
|
|
|
{
|
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $default_cast = 'Text';
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $casting = array(
|
|
|
|
'TextValue' => 'Text',
|
|
|
|
'HTMLValue' => 'HTMLFragment'
|
|
|
|
);
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
public function methodWithOneArgument($arg1)
|
|
|
|
{
|
|
|
|
return "arg1:{$arg1}";
|
|
|
|
}
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
public function methodWithTwoArguments($arg1, $arg2)
|
|
|
|
{
|
|
|
|
return "arg1:{$arg1},arg2:{$arg2}";
|
|
|
|
}
|
2016-10-14 03:30:05 +02:00
|
|
|
}
|