sfWebResponse::getMetas PHP Method

getMetas() public method

Retrieves all meta headers.
public getMetas ( ) : array
return array List of meta headers
    public function getMetas()
    {
        return $this->metas;
    }

Usage Example

 public function copyProperties(sfWebResponse $response)
 {
     $this->options = $response->getOptions();
     $this->headers = $response->getHttpHeaders();
     $this->metas = $response->getMetas();
     $this->httpMetas = $response->getHttpMetas();
     $this->stylesheets = $response->getStylesheets(self::RAW);
     $this->javascripts = $response->getJavascripts(self::RAW);
     $this->slots = $response->getSlots();
     $this->options['http_protocol'] = isset($_SERVER['SERVER_PROTOCOL']) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.0';
 }
All Usage Examples Of sfWebResponse::getMetas