Essence\Media::properties PHP Method

properties() public method

Returns the entire set of properties.
public properties ( ) : array
return array Properties.
    public function properties()
    {
        return $this->_properties;
    }

Usage Example

Example #1
0
 /**
  *	{@inheritDoc}
  */
 public function present(Media $Media)
 {
     $switch = $Media->get($this->_switch);
     if ($switch && !$Media->has($this->_property)) {
         foreach ($this->_templates as $pattern => $template) {
             if (preg_match($pattern, $switch)) {
                 $Media->set($this->_property, Template::compile($template, $Media->properties(), 'htmlspecialchars'));
                 break;
             }
         }
     }
     return $Media;
 }
All Usage Examples Of Essence\Media::properties