PHP Classes

File: pages.php

Recommend this page to a friend!
  Classes of Aleksey Nemiro   PHP ASP.NET WebForms   pages.php   Download  
File: pages.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP ASP.NET WebForms
Emulation of ASP.NET WebForms engine in PHP
Author: By
Last change:
Date: 8 years ago
Size: 303 bytes
 

Contents

Class file image Download
<?php
require_once 'global.php';

class
Pages extends Nemiro\UI\Page
{

    function
Load()
    {
       
$this->Title = '${PageTitle} - '.$this->Title;
       
$this->Controls['Header1']->PageTitle = '${HeaderTitle}';
       
$this->Controls['Header1']->PageDescription = '${HeaderDescription}';
    }

}

Nemiro\App::Magic();
?>