soupbowlweb/copyrighter
最新稳定版本:1.0.2
Composer 安装命令:
composer require soupbowlweb/copyrighter
包简介
Copyrighter displays the copyright symbol and the current year on your PHP website.
关键字:
README 文档
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>
统计信息
- 总下载量: 223
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-09-09