-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
executable file
·39 lines (36 loc) · 1.7 KB
/
footer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
* OE4 File Type Format Generation Example
*
* You may not change or alter any portion of this comment or credits
* of supporting developers from this source code or any supporting source code
* which is considered copyrighted (c) material of the original comment or credit authors.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* @copyright Chronolabs Cooperative http://syd.au.snails.email
* @license ACADEMIC APL 2 (https://sourceforge.net/u/chronolabscoop/wiki/Academic%20Public%20License%2C%20version%202.0/)
* @license GNU GPL 3 (http://www.gnu.org/licenses/gpl.html)
* @package oe4-fonttype
* @since 1.0.1
* @author Dr. Simon Antony Roberts <[email protected]>
* @version 1.0.1
* @description This is part of the font file type OE4 File Format Generation Example
* @link http://internetfounder.wordpress.com
* @link https://github.com/Chronolabs-Cooperative/0E4-FontType-Example
* @link https://sourceforge.net/p/chronolabs-cooperative
* @link https://facebook.com/ChronolabsCoop
* @link https://twitter.com/ChronolabsCoop
*
*/
// Exit if NOHTML set!
if (defined('OE4_NOHTML'))
return false;
?>
<h2>Code PHP Documentation</h2>
<p>You can find the phpDocumentor code API documentation at the following path :: <a href="<?php echo OE4_URL; ?>/docs/" target="_blank"><?php echo OE4_URL; ?>/docs/</a>. These should outline the source code core functions and classes for the OE4 Converter to function!</p>
</div>
</body>
</html>
<?php ?>