VChamiloPlugin.php 782 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Description of VChamilo.
  5. *
  6. * @copyright (c) 2014 VF Consulting
  7. * @license GNU General Public License - http://www.gnu.org/copyleft/gpl.html
  8. * @author Valery Fremaux <valery.fremaux@gmail.com>
  9. * @author Julio Montoya
  10. */
  11. class VChamiloPlugin extends Plugin
  12. {
  13. /**
  14. * VChamiloPlugin constructor.
  15. */
  16. public function __construct()
  17. {
  18. parent::__construct('1.4', 'Valery Fremaux, Julio Montoya');
  19. }
  20. /**
  21. * @return VChamiloPlugin
  22. */
  23. public static function create()
  24. {
  25. static $result = null;
  26. return $result ? $result : $result = new self();
  27. }
  28. /**
  29. * @return string
  30. */
  31. public function get_name()
  32. {
  33. return 'vchamilo';
  34. }
  35. }