mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
33 lines
730 B
PHP
33 lines
730 B
PHP
<?php
|
|
|
|
namespace SilverStripe\View\Tests\SSViewerTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\ArrayList;
|
|
use SilverStripe\View\ArrayData;
|
|
use SilverStripe\View\ViewableData;
|
|
|
|
class CacheTestData extends ViewableData implements TestOnly
|
|
{
|
|
|
|
public $testWithCalls = 0;
|
|
public $testLoopCalls = 0;
|
|
|
|
public function TestWithCall()
|
|
{
|
|
$this->testWithCalls++;
|
|
return ArrayData::create(array('Message' => 'Hi'));
|
|
}
|
|
|
|
public function TestLoopCall()
|
|
{
|
|
$this->testLoopCalls++;
|
|
return ArrayList::create(
|
|
array(
|
|
ArrayData::create(array('Message' => 'One')),
|
|
ArrayData::create(array('Message' => 'Two'))
|
|
)
|
|
);
|
|
}
|
|
}
|