本文整理汇总了PHP中Sonata\AdminBundle\Datagrid\DatagridMapper::getAdmin方法的典型用法代码示例。如果您正苦于以下问题:PHP DatagridMapper::getAdmin方法的具体用法?PHP DatagridMapper::getAdmin怎么用?PHP DatagridMapper::getAdmin使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Sonata\AdminBundle\Datagrid\DatagridMapper
的用法示例。
在下文中一共展示了DatagridMapper::getAdmin方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testAddException2
public function testAddException2()
{
try {
$this->datagridMapper->getAdmin()->expects($this->any())->method('hasFilterFieldDescription')->will($this->returnValue(true));
$this->datagridMapper->add('field');
} catch (\RuntimeException $e) {
$this->assertContains('The field "field" is already defined', $e->getMessage());
return;
}
$this->fail('Failed asserting that exception of type "\\RuntimeException" is thrown.');
}
示例2: testAddDuplicateNameException
public function testAddDuplicateNameException()
{
$tmpNames = array();
$this->datagridMapper->getAdmin()->expects($this->exactly(2))->method('hasFilterFieldDescription')->will($this->returnCallback(function ($name) use(&$tmpNames) {
if (isset($tmpNames[$name])) {
return true;
}
$tmpNames[$name] = $name;
return false;
}));
try {
$this->datagridMapper->add('fooName');
$this->datagridMapper->add('fooName');
} catch (\RuntimeException $e) {
$this->assertContains('Duplicate field name "fooName" in datagrid mapper. Names should be unique.', $e->getMessage());
return;
}
$this->fail('Failed asserting that exception of type "\\RuntimeException" is thrown.');
}
示例3: configureDatagridFilters
/**
* {@inheritdoc}
*/
public function configureDatagridFilters(DatagridMapper $filter)
{
$this->eventDispatcher->dispatch('sonata.admin.event.configure.datagrid', new ConfigureEvent($filter->getAdmin(), $filter, ConfigureEvent::TYPE_DATAGRID));
}