本文整理匯總了PHP中Drupal\views\Tests\ViewUnitTestBase::dataSet方法的典型用法代碼示例。如果您正苦於以下問題:PHP ViewUnitTestBase::dataSet方法的具體用法?PHP ViewUnitTestBase::dataSet怎麽用?PHP ViewUnitTestBase::dataSet使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Drupal\views\Tests\ViewUnitTestBase
的用法示例。
在下文中一共展示了ViewUnitTestBase::dataSet方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: 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://en.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;
}
示例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
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;
}
示例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
/**
* {@inheritdoc}
*/
protected function dataSet()
{
$data = parent::dataSet();
$data[0]['name'] = 'file.png';
$data[1]['name'] = 'file.tar';
$data[2]['name'] = 'file.tar.gz';
$data[3]['name'] = 'file';
return $data;
}
示例6: 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;
}
示例7: dataSet
/**
* Overrides \Drupal\views\Tests\ViewTestBase::dataSet().
*/
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;
}
示例8: dataSet
/**
* {@inheritdoc}
*/
protected function dataSet()
{
$data = parent::dataSet();
foreach ($data as &$row) {
if ($row['status']) {
$row['status'] = 'Enabled';
} else {
$row['status'] = '';
}
}
return $data;
}
示例9: 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;
}