<?php $page->GetContent(); ?>
<?php gpOutput::GetHead(); ?>
<?php gpOutput::GetAdminLink(); ?>
<?php gpOutput::Get('Menu'); ?>
<?php gpOutput::Get('FullMenu'); ?>
<?php gpOutput::Get('SubMenu'); ?>
<?php gpOutput::Get('ExpandMenu'); ?>
<?php gpOutput::Get('ExpandLastMenu'); ?>
<?php gpOutput::Get('TopTwoMenu'); ?>
<?php gpOutput::Get('BottomTwoMenu'); ?>
<?php gpOutput::Get('MiddleSubMenu'); ?>
<?php gpOutput::Get('BottomSubMenu'); ?>
Additional menu formatting options are available.
<?php gpOutput::Get('Extra',string $area); ?>
You can find a brief tutorial on how to add unique header and/or side menu on a per page basis in the forum here: [1].
<?php gpOutput::GetImage( string $image_path , array $html_attributes ); ?>
<?php gpOutput::Area(string $area_name, string $html); ?>...
<?php gpOutput::GetArea(string $area_name, string $area_text); ?>
This line of code defines an area named My_Html_Area that contains the html <div class="my_html_area">%s</div>
gpOutput::Area('My_Html_Area','<div class="my_html_area">%s</div>');
Then using this line of code, we can retrieve that html, in a user draggable wrapper with editable text.
gpOutput::GetArea('My_Html_Area','This Text');
The result will be an area in your template that a user can do two things with:
Note: gpOutput::Area() should be called before any other output functions are used in your template. Before <head>label and enclosed on php calls
By default, most of the areas outlined above can be rearranged by the user within Typesetter's administration scripts. To prevent users from being able to move an area in your theme, you can precede the function call with $GP_ARRANGE = false;. Example:
$GP_ARRANGE = false; gpOutput::Get('Menu');
A new release for Typesetter is in the works with a lot of improvements including the ... Read More
Typesetter 5.1Typesetter 5.1 is now available for download. 5.1 includes bug fixes, UI/UX improvements, ... Read More
More News
What CMS: Find out what CMS a site is using.
Who Hosts This: Find out who is hosting any web site
WordPress Theme Detect: Find out which theme a WordPress site is using