function PanelizerEntityUser::get_default_display in Panelizer 7.2
Same name and namespace in other branches
- 7.3 plugins/entity/PanelizerEntityUser.class.php \PanelizerEntityUser::get_default_display()
Provide a default display for newly panelized entities.
This should be implemented by the entity plugin.
Overrides PanelizerEntityDefault::get_default_display
File
- plugins/
entity/ PanelizerEntityUser.class.php, line 70 - Class for the Panelizer taxonomy term entity plugin.
Class
- PanelizerEntityUser
- Panelizer Entity user plugin class.
Code
function get_default_display() {
// For now we just go with the empty display.
// @todo come up with a better default display.
return parent::get_default_display();
}