OpenCart 🇺🇦

Класс Document { ... }

Класс, предназначеный для работы с документом (на уровне html). Хранит в себе заголовок (title) страницы, meta-теги, ссылки на стили и скрипты страницы.

Название свойства Описание
Document::$title private mixed $title
Document::$description private mixed $description
Document::$keywords private mixed $keywords
Document::$links private mixed $links = array();
Document::$styles private mixed $styles = array();
Document::$scripts private mixed $scripts = array();
Тип Возвр. Описание
public void setTitle ( string $title )
Исходный код метода:
$this->title = $title;
public string getTitle ( )
Исходный код метода:
return $this->title;
public void setDescription ( string $description )
Исходный код метода:
$this->description = $description;
public string getDescription ( )
Исходный код метода:
return $this->description;
public void setKeywords ( string $keywords )
Исходный код метода:
$this->keywords = $keywords;
public string getKeywords ( )
Исходный код метода:
return $this->keywords;
public void addLink ( string $href, string $rel )
Исходный код метода:
$this->links[md5($href)] = array(
	'href' => $href,
	'rel'  => $rel
);			
public array getLinks ( )
Исходный код метода:
return $this->links;
public void addStyle ( string $href, string $rel = 'stylesheet', string $media = 'screen' )
Исходный код метода:
$this->styles[md5($href)] = array(
	'href'  => $href,
	'rel'   => $rel,
	'media' => $media
);
public array getStyles ( )
Исходный код метода:
return $this->styles;
public mixed addScript ( $script )
Исходный код метода:
$this->scripts[md5($script)] = $script;			
public mixed getScripts ( )
Исходный код метода:
return $this->scripts;

Связанные классы:

Название класса Роль
Нет связанных классов

Комментарии