VChamiloPlugin.php 787 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. *
  22. * @return VChamiloPlugin
  23. */
  24. public static function create()
  25. {
  26. static $result = null;
  27. return $result ? $result : $result = new self();
  28. }
  29. /**
  30. * @return string
  31. */
  32. public function get_name()
  33. {
  34. return 'vchamilo';
  35. }
  36. }