A tumblelog CMS built on AJAX, PHP and MySQL.

hola.php 208B

12345678910111213141516
  1. <?php
  2. class hola extends plugins {
  3. function hola() {
  4. //$this->addAction('gelato_init', 'saluda');
  5. }
  6. function saluda() {
  7. echo "Hola mundo desde plugin en gelato<br />";
  8. }
  9. }
  10. ?>