| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314 |
- <?php
- /**
- * Page superclass file.
- *
- * Provides a class with all the properties and methods to display the page.
- *
- * @author Iñigo Valentin <i@inigovalentin.com>
- * @license https://www.gnu.org/licenses/gpl-3.0.en.html GNU General Public License V3
- * @package IVV
- */
- /**
- * Page superclass.
- *
- * Every visitable page type must inherit from this one.
- *
- * @category Page
- */
- abstract class Page{
- /**
- * @var string[] List of CSS files required for the page.
- */
- private $css = [];
-
- /**
- * @var string Path to the view associated with the page.
- */
- private $view;
-
- /**
- * @var string Title of the page, in the defined language.
- */
- private $title;
-
- /**
- * @var string Site name.
- */
- private $name;
-
- /**
- * @var string Page description, in the defined language.
- */
- private $description;
-
- /**
- * @var string URL to the site favicon.
- */
- private $favicon;
-
- /**
- * @var string URL to the page icon or main image.
- */
- private $icon;
-
- /**
- * @var string Canonical URL.
- */
- private $canonical;
-
- /**
- * @var string Autjhor URL.
- */
- private $author;
-
- /**
- * @var integer HTTP status code.
- */
- private $code = 0;
-
- /**
- * @var string HTTP status message.
- */
- private $message = "";
-
- /**
- * Constructor.
- */
- public function __construct(){
- $this->favicon = URL::IMG["LOGO"] . "sw.png";
- $this->icon = URL::IMG["LOGO"] . "sw.png";
- $this->name = "SWDB";
- $this->author = URL::BASE;
- $this->add_css("ui.css");
- }
- /**
- * Adds a CSS file to the list.
- *
- * @param string $css Css file. Can be the absolute URL, or just the filename.
- */
- protected function add_css($css){
- if (strripos($css, URL::CSS) === false){
- $file = URL::CSS . $css;
- }
- else{
- $file = $css;
- }
- array_push($this->css, $file);
- }
-
- /**
- * Retrieves the CSS file URLs for the page.
- *
- * @return string[] CSS files (by absolute URL.)
- */
- public function get_css(){
- return $this->css;
- }
-
- /**
- * Sets the page view.
- *
- * @param string $view View file. Can be the relative path, or just the filename.
- */
- protected function set_view($view){
- if (strripos($view, PATH::VIEW) === false){
- $file = PATH::VIEW . $view;
- }
- else{
- $file = $view;
- }
- $this->view = $file;
- }
-
- /**
- * Retrieves the page view file.
- *
- * @return string Path to the view file.
- */
- public function get_view(){
- return $this->view;
- }
-
- /**
- * Sets the page title.
- *
- * The string " - SWDB" will always be added at the end.
- *
- * @param string $title Page title.
- */
- protected function set_title($title){
- $this->title = htmlentities($title, ENT_QUOTES) . " - SWDB";
- }
-
- /**
- * Retrieves the page title.
- *
- * @return string Page title.
- */
- public function get_title(){
- return $this->title;
- }
-
- /**
- * Retrieves the site name.
- *
- * @return string Site name.
- */
- public function get_name(){
- return $this->name;
- }
-
- /**
- * Sets the page description.
- *
- * The string " - Summoners War DataBase" will always be added at the end.
- *
- * @param string $description Page description text.
- */
- protected function set_description($description){
- $this->description = htmlentities($description, ENT_QUOTES) . " - " . Text::get("USER_TAGLINE");
- }
-
- /**
- * Retrieves the page description
- *
- * @return string Page description.
- */
- public function get_description(){
- return $this->description;
- }
-
- /**
- * Retrieves the URL to the favicon.
- *
- * @return string Favicon URL.
- */
- public function get_favicon(){
- return $this->favicon;
- }
-
- /**
- * Retrieves the URL to the thumbnail image.
- *
- * @return string Thmbnail icon URL.
- */
- public function get_icon(){
- return $this->icon;
- }
-
- /**
- * Sets the page canonical URL.
- *
- * @param string $canonical Canonical URL, absolute or relative.
- */
- protected function set_canonical($canonical){
- if (strripos($canonical, URL::BASE) === false){
- $file = URL::BASE . $canonical;
- }
- else{
- $file = $canonical;
- }
- $this->canonical = $file;
- }
-
- /**
- * Retrieves the canonical URL to the page.
- *
- * @return string Canonical URL.
- */
- public function get_canonical(){
- return $this->canonical;
- }
-
- /**
- * Retrieves the author URL (site main URL).
- *
- * @return string AUthor URL.
- */
- public function get_author(){
- return $this->author;
- }
-
- /**
- * Sets the HTTP status code for the page to return.
- *
- * @param int HTTP status code.
- */
- protected function set_code($code){
- if (is_int($code) && $code >= 200 && $code <= 500){
- $this->code = $code;
- }
- }
-
- /**
- * Retrieves the page HTTP status code.
- *
- * @return int HTTP status code
- */
- public function get_code(){
- return $this->code;
- }
-
- /**
- * Sets the HTTP status message for the page to return.
- *
- * @param string HTTP status message.
- */
- protected function set_message($mesage){
- $this->message = strval($mesage);
- }
-
- /**
- * Retrieves the page HTTP status message.
- *
- * @return string HTTP status code
- */
- public function get_message(){
- return $this->message;
- }
-
- /**
- * Generates the content to be inserted in the HTML <head> section.
- *
- * It must go between the <head> and </head> tags, and anything can go behind it before closing
- * the section. It includes page title, description, css files and metadata.
- *
- * @return string HTML head content.
- */
- public function generate_head(){
- $head = "
- <meta content='text/html; charset=utf-8' http-equiv='content-type'/>
- <meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1'/>
- <title>" . $this->get_title() . "</title>
- <link rel='shortcut icon' href='" . $this->get_favicon() . "'/>
- <!-- CSS files -->";
- foreach ($this->get_css() as $css){
- $head .= "
- <link rel='stylesheet' type='text/css' href='$css'/>";
- }
- $head .= "
- <!-- Meta tags -->
- <link rel='canonical' href='" . $this->get_canonical() . "'/>
- <link rel='author' href='" . $this->get_author() . "'/>
- <link rel='publisher' href='" . $this->get_author() . "'/>
- <meta name='description' content='" . $this->get_description() . "'/>
- <meta property='og:title' content='" . $this->get_title() . "'/>
- <meta property='og:url' content='" . $this->get_canonical() . "'/>
- <meta property='og:description' content='" . $this->get_description() . "'/>
- <meta property='og:image' content='" . $this->get_icon() . "'/>
- <meta property='og:site_name' content='" . $this->get_name() . "'/>
- <meta property='og:type' content='website'/>
- <meta property='og:locale' content='en'/>
- <meta name='twitter:card' content='summary'/>
- <meta name='twitter:title' content='" . $this->get_title() . "'/>
- <meta name='twitter:description' content='" . $this->get_description() . "'/>
- <meta name='twitter:image' content='" . $this->get_icon() . "'/>
- <meta name='twitter:url' content='" . $this->get_canonical() . "'/>
- <meta name='robots' content='index follow'/>\n";
- return $head;
- }
-
- }
|