本文整理汇总了PHP中Drupal\Tests\views\Kernel\ViewsKernelTestBase::dataSet方法的典型用法代码示例。如果您正苦于以下问题:PHP ViewsKernelTestBase::dataSet方法的具体用法?PHP ViewsKernelTestBase::dataSet怎么用?PHP ViewsKernelTestBase::dataSet使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Drupal\Tests\views\Kernel\ViewsKernelTestBase
的用法示例。
在下文中一共展示了ViewsKernelTestBase::dataSet方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: dataSet
function dataSet()
{
// Use default dataset but remove the age from john and paul
$data = parent::dataSet();
$data[0]['age'] = 0;
$data[3]['age'] = 0;
return $data;
}
示例2: dataSet
/**
* {@inheritdoc}
*/
public function dataSet()
{
$datas = parent::dataSet();
foreach ($datas as $i => $data) {
$datas[$i]['destroyed'] = gmmktime(0, 0, 0, 1, 1, 2050);
}
return $datas;
}
示例3: dataSet
/**
* Add more items to the test set, to make the order tests more robust.
*
* In total we have then 60 entries, which makes a probability of a collision
* of 1/60!, which is around 1/1E80, which is higher than the estimated amount
* of protons / electrons in the observable universe, also called the
* eddington number.
*
* @see http://wikipedia.org/wiki/Eddington_number
*/
protected function dataSet()
{
$data = parent::dataSet();
for ($i = 0; $i < 55; $i++) {
$data[] = array('name' => 'name_' . $i, 'age' => $i, 'job' => 'job_' . $i, 'created' => rand(0, time()), 'status' => 1);
}
return $data;
}
示例4: dataSet
function dataSet()
{
$data = parent::dataSet();
$data[0]['age'] = 0;
$data[1]['age'] = 10;
$data[2]['age'] = 1000;
$data[3]['age'] = 10000;
return $data;
}
示例5: dataSet
/**
* An extended test dataset.
*/
protected function dataSet()
{
$dataset = parent::dataSet();
$dataset[0]['description'] = 'John Winston Ono Lennon, MBE (9 October 1940 – 8 December 1980) was an English musician and singer-songwriter who rose to worldwide fame as one of the founding members of The Beatles, one of the most commercially successful and critically acclaimed acts in the history of popular music. Along with fellow Beatle Paul McCartney, he formed one of the most successful songwriting partnerships of the 20th century.';
$dataset[1]['description'] = 'George Harrison,[1] MBE (25 February 1943 – 29 November 2001)[2] was an English rock guitarist, singer-songwriter, actor and film producer who achieved international fame as lead guitarist of The Beatles.';
$dataset[2]['description'] = 'Richard Starkey, MBE (born 7 July 1940), better known by his stage name Ringo Starr, is an English musician, singer-songwriter, and actor who gained worldwide fame as the drummer for The Beatles.';
$dataset[3]['description'] = 'Sir James Paul McCartney, MBE (born 18 June 1942) is an English musician, singer-songwriter and composer. Formerly of The Beatles (1960–1970) and Wings (1971–1981), McCartney is the most commercially successful songwriter in the history of popular music, according to Guinness World Records.[1]';
$dataset[4]['description'] = NULL;
return $dataset;
}
示例6: dataSet
/**
* {@inheritdoc}
*/
protected function dataSet()
{
$data = parent::dataSet();
$data[0]['langcode'] = 'en';
$data[1]['langcode'] = 'xx-lolspeak';
$data[2]['langcode'] = '';
$data[3]['langcode'] = '';
$data[4]['langcode'] = '';
return $data;
}
示例7: dataSet
/**
* {@inheritdoc}
*/
protected function dataSet()
{
$data = parent::dataSet();
foreach ($data as &$row) {
if ($row['status']) {
$row['status'] = 'Enabled';
} else {
$row['status'] = '';
}
}
return $data;
}
示例8: dataSet
/**
* Additional data to test the NULL issue.
*/
protected function dataSet()
{
$data_set = parent::dataSet();
$data_set[] = array('name' => 'Ginger', 'age' => 25, 'job' => NULL, 'created' => gmmktime(0, 0, 0, 1, 2, 2000), 'status' => 1);
return $data_set;
}