/ */ interface P4Cms_Content_EnhancedElementInterface { /** * Get the associated content record (if set). * * @return null|P4Cms_Content the associated content record or null if none set. */ public function getContentRecord(); /** * Set the associated content record for this element. * * @param P4Cms_Content $content the associated content record for this element. */ public function setContentRecord($content); /** * Get the default decorators to use when rendering content * element values of this type for display. * * @return array decorators configuration array suitable for passing * to element setDecorators(). */ public function getDefaultDisplayDecorators(); }