PEAR_Info::getStyleSheet
PEAR_Info::getStyleSheet() – 表示に使用する独自のスタイルシートを返す
Synopsis
require_once 'PEAR/Info.php';
string PEAR_Info::getStyleSheet (
boolean $content
= = true
)
Description
デフォルトでは、css の内容をを文字列で返します。
$content
を FALSE に設定すると、css
のファイル名を返します (これは setStyleSheet 関数で設定したものです)。
これは、<link rel="stylesheet" type="text/css"
href="" /> タグに簡単に組み込むことができます (以下の例を参照ください)。
Parameter
-
boolean $content
-
(オプション) css のファイル名を返すか、あるいはその内容を文字列で返すか。
Since
バージョン 1.7.0RC1 (2007-07-01)
Note
This function can not be called
statically.
Return value
string - css のファイル名あるいはその内容を返します。
Example
<?php
// PEAR_Info のファイルが必要です
require_once 'PEAR/Info.php';
class PEAR_Info3 extends PEAR_Info
{
function PEAR_Info3($pear_dir = '', $user_file = '', $system_file = '')
{
$this->__construct($pear_dir, $user_file, $system_file);
}
function toHtml()
{
$styles = basename($this->getStyleSheet(false));
$body = $this->info;
$html = <<<HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" >
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
<meta name="author" content="Laurent Laville" />
<title>PEAR_Info()</title>
<link rel="stylesheet" type="text/css" href="$styles" />
</head>
<body>
<div id="header">
<h1>Laurent-Laville.org</h1>
</div>
<div id="footer">
</div>
<div id="contents">
$body
</div>
</body>
</html>
HTML;
return $html;
}
}
// PEAR_Info オブジェクトを作成します
$info = new PEAR_Info3();
// スタイルを設定し、デフォルトのスタイルシートではなくこちらを使用します
$info->setStyleSheet(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'pearinfo3.css');
// PEAR_Info の出力を表示します
$info->display();
?>