Demo.php 357 B

123456789101112
  1. <?php
  2. namespace DemoExtension;
  3. class Demo {
  4. public static function run() {
  5. // This is a demonstration of an extension library loaded without Composer
  6. // It can be used in the controller like this: \DemoExtension\Demo::run();
  7. echo 'I am the DemoExtension extension library loaded without Composer';
  8. return false;
  9. }
  10. }