soupbowlweb/copyrighter

Copyrighter displays the copyright symbol and the current year on your PHP website.

1.0.2 2015-12-31 23:44 UTC

This package is auto-updated.

Last update: 2024-09-19 01:48:26 UTC


README

Copyrighter displays the copyright symbol and the current year on your PHP website.

Usage

You can use Copyrighter in your PHPs...

use Copyrighter\CopyrighterFactory;

$copyrighter = CopyrighterFactory::create();
$copyright = $copyrighter->getCopyright();

// $copyright variable now contains the goods. Go nuts.

...or you can use Copyrighter directly in your HTML templates. Saves time and money.

<footer>
    <p><?php Copyrighter::show(); ?> Vandelay Industries.</p>
</footer>

Geo Aware Year

Copyrighter features the ability to serve clients a Geo Aware year portion of the returned Copyrighter value. Users will be served the current year for their timezone, not the current year of the server.

To enable Geo Aware mode, simply pass a configuration array to the CopyrighterFactory create() method:

use \Copyrighter\CopyrighterFactory;

$copyrighter = CopyrighterFactory::create([ 'geo-locator' => 'FreeGeoIP' ]);
echo $copyrighter->getCopyright();

Note: Currently the only supported GeoLocator is FreeGeoIP

The configuration array can also be passed to the Copyrighter::show() method:

<footer>
    <p><?php Copyrighter::show([ 'geo-locator' => 'FreeGeoIP' ]); ?> Vandelay Industries.</p>
</footer>