Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16609 программистов и 1698 роботов. Сейчас ищут 1808 программистов ...
PEAR_Info::setStyleSheet
Вернуться к: Reference guide
PEAR_Info::setStyleSheet
PEAR_Info::setStyleSheet() – Sets the custom style sheet to use your own styles
Synopsis
require_once 'PEAR/Info.php';
boolean PEAR_Info::setStyleSheet ( string $css = null )
Sets the custom style sheet (colors, sizes) to applied to PEAR_Info output. If you don't give any parameter, you'll then apply again the default style.
Parameter
- string $css
-
(optional) File to read user-defined styles from
Throws
throws no exceptions thrown
Since
since version 1.7.0RC1 (2007-07-01)
Note
This function can not be called statically.
If you don't want to have any style applied, then build an empty style sheet (css file) and give it as function parameter (See example below).
Return value
boolean - TRUE if custom styles, FALSE if default styles applied.
Example
<?php
// require the PEAR_Info file
require_once 'PEAR/Info.php';
// Create PEAR_Info object
$info = new PEAR_Info();
// set your own styles, rather than use the default stylesheet
$info->setStyleSheet(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'blueskin.css');
// don't use any style (empty.css is an empty file)
//$info->setStyleSheet(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'empty.css');
// Display PEAR_Info output
$info->display();
?>
Вернуться к: Reference guide