| 1 | <?php |
||
| 18 | class SonataDoctrinePHPCRAdminExtension extends \Twig_Extension |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * {@inheritdoc} |
||
| 22 | */ |
||
| 23 | public function getFilters() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Renders a property of a node. |
||
| 33 | * |
||
| 34 | * @param string $property |
||
| 35 | * |
||
| 36 | * @return string String representation of the property |
||
| 37 | */ |
||
| 38 | public function renderNodeProperty(NodeInterface $node, $property) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Renders a path of a node. |
||
| 45 | * |
||
| 46 | * @return string Node path |
||
| 47 | */ |
||
| 48 | public function renderNodePath(NodeInterface $node) |
||
| 52 | |||
| 53 | /** |
||
| 54 | * {@inheritdoc} |
||
| 55 | */ |
||
| 56 | public function getName() |
||
| 60 | } |
||
| 61 |