WP File Manager
Current Path:
/
home
/
itutorethiopia
/
public_html
/
vendor
/
sabberworm
/
php-css-parser
/
lib
/
Sabberworm
/
CSS
/
Property
/
Name
Action
..
AtRule.php
Edit
CSSNamespace.php
Edit
Charset.php
Edit
Import.php
Edit
Selector.php
Edit
Editing: CSSNamespace.php
<?php namespace Sabberworm\CSS\Property; /** * CSSNamespace represents an @namespace rule. */ class CSSNamespace implements AtRule { private $mUrl; private $sPrefix; public function __construct($mUrl, $sPrefix = null) { $this->mUrl = $mUrl; $this->sPrefix = $sPrefix; } public function __toString() { return $this->render(new \Sabberworm\CSS\OutputFormat()); } public function render(\Sabberworm\CSS\OutputFormat $oOutputFormat) { return '@namespace '.($this->sPrefix === null ? '' : $this->sPrefix.' ').$this->mUrl->render($oOutputFormat).';'; } public function getUrl() { return $this->mUrl; } public function getPrefix() { return $this->sPrefix; } public function setUrl($mUrl) { $this->mUrl = $mUrl; } public function setPrefix($sPrefix) { $this->sPrefix = $sPrefix; } public function atRuleName() { return 'namespace'; } public function atRuleArgs() { $aResult = array($this->mUrl); if($this->sPrefix) { array_unshift($aResult, $this->sPrefix); } return $aResult; } }