Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.

showcopyright

This function will display the PHPFusion copyright with it's link to the Official PHPFusion Support Site and the AGPL license which is the license PHPFusion is distributed under.

showcopyright

Quote

showcopyright ( [ string $class ] )


Parameters
class
This is an optional parameter. If the parameter is given it will add a "class" attribute to the link.

Return Values
This function will return a string containing the copyright of PHPFusion.

Basic example
Code
<?php
if (!$license) { echo "<br /><br />n".showcopyright(); }
 ?>

If the variable $licence is not true, the copyright will be shown

Output from basic example

Quote

<br /><br />
Powered by <a href='http://www.php-fusion.co.uk>PHPFusion</a> v7.01.00 copyright © 2014 PHPFusion Inc.<br />
Released as free software without warranties under <a href='http://www.fsf.org/licensing/licenses/agpl-3.0.html'>GNU Affero GPL</a> v3.n

Show Copyright with the attribute class in the copyright link
Code
<?php
if (!$license) { echo "<br /><br />n".showcopyright("my-copyright-class"); }
 ?>

If the variable $licence is not true, the copyright will be shown. The attribute class with the name "my-copyright-class" will be added to the links.

Output from the attribute class example

Quote

<br /><br />
Powered by <a href='http://www.php-fusion.co.uk class='my-copyright-class'>PHPFusion</a> v7.01.00 copyright © 2014 PHPFusion Inc.<br />
Released as free software without warranties under <a href='http://www.fsf.org/licensing/licenses/agpl-3.0.html' class='my-copyright-class'>GNU Affero GPL</a> v3.n


Notes
You are not allowed to remove the copyrights from an un-licensed version of PHPFusion.
Read more about PHPFusion licensing on the License Page