Класс, предназначеный для работы с документом (на уровне html). Хранит в себе заголовок (title) страницы, meta-теги, ссылки на стили и скрипты страницы.
Название свойства | Описание |
Document |
private mixed
$title
|
Document |
private mixed
$description
|
Document |
private mixed
$keywords
|
Document |
private mixed
$links
= array();
|
Document |
private mixed
$styles
= array();
|
Document |
private mixed
$scripts
= array();
|
Тип | Возвр. | Описание |
public |
void
|
setTitle (
string $title )
|
public |
string
|
getTitle (
)
|
public |
void
|
setDescription (
string $description )
|
public |
string
|
getDescription (
)
|
public |
void
|
setKeywords (
string $keywords )
|
public |
string
|
getKeywords (
)
|
public |
void
|
addLink (
string $href, string $rel )
|
public |
array
|
getLinks (
)
|
public |
void
|
addStyle (
string $href, string $rel = 'stylesheet', string $media = 'screen' )
|
public |
array
|
getStyles (
)
|
public |
mixed
|
addScript (
$script )
|
public |
mixed
|
getScripts (
)
|
Название класса | Роль |
---|---|
Нет связанных классов |