コード例 #1
0
ファイル: yStyleTag.php プロジェクト: alexqwert/kanon
 public function __construct($attr = array())
 {
     parent::__construct('style', $attr);
     $this['type'] = 'text/css';
 }
コード例 #2
0
ファイル: yHeadTag.php プロジェクト: ExceptVL/yuki-html
 public function addMeta($name, $content)
 {
     return $this->appendChild(yHtmlTag::create('meta', array('name' => $name, 'content' => $content)));
 }
コード例 #3
0
ファイル: yMetaTag.php プロジェクト: ExceptVL/kanon
 public function __construct($attr = array())
 {
     parent::__construct('meta', $attr, true);
 }