yellow/system/plugins/example.php

14 lines
401 B
PHP
Raw Normal View History

2013-04-14 22:41:04 +00:00
<?php
// Copyright (c) 2013 Datenstrom, http://datenstrom.se
2013-04-14 22:41:04 +00:00
// This file may be used and distributed under the terms of the public license.
// Example plugin
2013-12-01 11:59:07 +00:00
class YellowExample
2013-04-14 22:41:04 +00:00
{
//You can download plugins and extensions from Github.
//See https://github.com/markseu/yellowcms-extensions
const Version = "0.0.0";
}
2013-12-01 11:59:07 +00:00
$yellow->registerPlugin("example", "YellowExample", YellowExample::Version);
2013-04-14 22:41:04 +00:00
?>