public function FlexiformDisplayBase::getPath in Flexiform 7
Get the path, if applicable, for the display.
Parameters
$base_entity_id: The identifier for the base entity.
...: Any additional arguments.
Return value
string|NULL The path to the flexiform or NULL if there is none.
Overrides FlexiformDisplayInterface::getPath
1 method overrides FlexiformDisplayBase::getPath()
- FlexiformDisplayPageBase::getPath in includes/
display/ page.display.inc - Get the path, if applicable, for the display.
File
- includes/
flexiform.display.inc, line 185 - Specify base display classes for flexiforms.
Class
- FlexiformDisplayBase
- Base class for all flexiform displays.
Code
public function getPath($base_entity_id = NULL) {
return NULL;
}