* @license https://www.gnu.org/licenses/gpl-3.0.en.html GNU General Public License V3 * @package SWDB */ require_once(PATH::PAGE . "Page.php"); require_once(PATH::ENTITY . "Player.php"); /** * Help page model. * * @category Page */ class Help_Page extends Page{ /** * Constructor. * * Retrieves the data and initializes the variables. */ public function __construct(){ parent::__construct(); $this->set_public(true); $this->set_view("help.php"); $this->set_title("Help"); $this->set_description("Help"); $this->set_canonical("help/"); $this->add_css("help.css"); $this->set_code(200); $this->set_message("OK"); } }