Просмотр файла mc-2.7.0/modules/index_page/helpers/_installer.php

Размер файла: 746B
  1. <?php
  2.  
  3. /**
  4. * MobileCMS
  5. *
  6. * Open source content management system for mobile sites
  7. *
  8. * @author MobileCMS Team <support@mobilecms.pro>
  9. * @copyright Copyright (c) 2011-2019, MobileCMS Team
  10. * @link https://mobilecms.pro Official site
  11. * @license MIT license
  12. */
  13. defined('IN_SYSTEM') or die('<b>403<br />Запрет доступа!</b>');
  14.  
  15. //---------------------------------------------
  16.  
  17. /**
  18. * Хелпер установки модуля
  19. */
  20. class _installer {
  21.  
  22. /**
  23. * Установка модуля
  24. */
  25. public static function install($db) {
  26. }
  27.  
  28. /**
  29. * Деинсталляция модуля
  30. */
  31. public static function uninstall($db) {
  32. }
  33.  
  34. }
  35.  
  36. ?>