example.php 401 B

1234567891011121314
  1. <?php
  2. // Copyright (c) 2013 Datenstrom, http://datenstrom.se
  3. // This file may be used and distributed under the terms of the public license.
  4. // Example plugin
  5. class YellowExample
  6. {
  7. //You can download plugins and extensions from Github.
  8. //See https://github.com/markseu/yellowcms-extensions
  9. const Version = "0.0.0";
  10. }
  11. $yellow->registerPlugin("example", "YellowExample", YellowExample::Version);
  12. ?>