Home
DevCentral
Search
Configure Global Search
Log In
Transactions
T136
Change Details
Change Details
Old
New
Diff
# Add an entry in pages/index.dat (the URL, a space, the class name) # Create a new class on pages with the name of the class in lowercase (sic) as filename ``` <?php /** * Represents a page from the %%url%% site. */ class %%class%% extends Page { /** * Analyses the page and extracts metadata */ function analyse () { parent::analyse(); //Here the logic for this specific page } } ```
# Add an entry in pages/index.dat (the URL, a space, the class name) # Create a new class on pages with the name of the class in lowercase (sic) as filename ``` <?php /** * Represents a page from the %%url%% site. */ class %%class%% extends Page { /** * Analyses the page and extracts metadata */ function analyse () { parent::analyse(); //Here the logic for this specific page } } ```
Continue