Exemplo n.º 1
0
 /** Get content from location
  * @param string $place
  * @return string
  */
 public function get_content_from($place)
 {
     if (is_array($this->content[$place]) && array_key_exists($place, self::$resource_filter)) {
         $this->content[$place] = \System\Resource::filter_output_content(self::$resource_filter[$place], $this->content[$place]);
     }
     return $this->content[$place];
 }