mirror of
https://github.com/gtbu/Typesetter-5.3-p8.git
synced 2024-11-11 01:44:02 +01:00
28 lines
716 B
PHP
28 lines
716 B
PHP
<?php
|
|
|
|
namespace Addon\Example;
|
|
|
|
defined('is_running') or die('Not an entry point...');
|
|
|
|
|
|
class Special extends \Addon\Example\LoadAutomatically{
|
|
|
|
public function __construct(){
|
|
echo '<h2>This is a Special Script</h2>';
|
|
|
|
echo '<p>This is an example of a Typesetter Addon in the form of a Special page.</p>';
|
|
|
|
echo '<p>Special pages can be used to add more than just content to a Typesetter CMS installation. </p>';
|
|
|
|
echo '<p>';
|
|
echo \gp\tool::Link('Admin_Example','An Example Link');
|
|
echo '</p>';
|
|
|
|
echo '<p>You can download <a href="https://www.typesettercms.com/Special_Addon_Plugins?id=160">a plugin with addtional examples</a> from typesettercms.com </p>';
|
|
|
|
$this->AutomaticallyLoaded();
|
|
}
|
|
|
|
}
|
|
|
|
|