parent
e5c3503630
commit
09142738ee
@ -1,13 +1,14 @@ |
|||||||
<?php |
<?php |
||||||
/* For licensing terms, see /license.txt */ |
/* For licensing terms, see /license.txt */ |
||||||
/** |
|
||||||
* @package chamilo.plugin.ticket |
|
||||||
*/ |
|
||||||
/** |
/** |
||||||
* Loading of necessary libs |
* Loading of necessary libs |
||||||
|
* |
||||||
|
* @package chamilo.plugin.ticket |
||||||
*/ |
*/ |
||||||
|
|
||||||
require_once '../../main/inc/global.inc.php'; |
require_once '../../main/inc/global.inc.php'; |
||||||
require_once api_get_path(LIBRARY_PATH).'plugin.class.php'; |
require_once api_get_path(LIBRARY_PATH).'plugin.class.php'; |
||||||
|
|
||||||
require_once 'src/ticket.class.php'; |
require_once 'src/ticket.class.php'; |
||||||
require_once 'src/ticket_plugin.class.php'; |
require_once 'src/ticket_plugin.class.php'; |
||||||
|
|||||||
@ -1,13 +1,11 @@ |
|||||||
<?php |
<?php |
||||||
/* For licensing terms, see /license.txt */ |
/* For licensing terms, see /license.txt */ |
||||||
|
|
||||||
/** |
/** |
||||||
* This script is included by main/admin/settings.lib.php and generally |
* This script is included by main/admin/settings.lib.php and generally |
||||||
* includes things to execute in the main database (settings_current table) |
* includes things to execute in the main database (settings_current table) |
||||||
* @package chamilo.plugin.ticket |
* @package chamilo.plugin.ticket |
||||||
*/ |
*/ |
||||||
/** |
|
||||||
* Initialization |
|
||||||
*/ |
|
||||||
|
|
||||||
require_once dirname(__FILE__).'/config.php'; |
require_once dirname(__FILE__).'/config.php'; |
||||||
TicketPlugin::create()->install(); |
TicketPlugin::create()->install(); |
||||||
|
|||||||
@ -1,7 +1,8 @@ |
|||||||
<?php |
<?php |
||||||
/* For licensing terms, see /license.txt */ |
/* For licensing terms, see /license.txt */ |
||||||
|
|
||||||
/** |
/** |
||||||
* @package chamilo.plugin.ticket |
* @package chamilo.plugin.ticket |
||||||
*/ |
*/ |
||||||
require_once dirname(__FILE__).'/config.php'; |
require_once dirname(__FILE__).'/config.php'; |
||||||
$plugin_info = TicketPlugin::create()->get_info(); |
$plugin_info = TicketPlugin::create()->get_info(); |
||||||
|
|||||||
@ -1,13 +1,11 @@ |
|||||||
<?php |
<?php |
||||||
/* For licensing terms, see /license.txt */ |
/* For licensing terms, see /license.txt */ |
||||||
|
|
||||||
/** |
/** |
||||||
* This script is included by main/admin/settings.lib.php when unselecting a plugin |
* This script is included by main/admin/settings.lib.php when unselecting a plugin |
||||||
* and is meant to remove things installed by the install.php script in both |
* and is meant to remove things installed by the install.php script in both |
||||||
* the global database and the courses tables |
* the global database and the courses tables |
||||||
* @package chamilo.plugin.ticket |
* @package chamilo.plugin.ticket |
||||||
*/ |
*/ |
||||||
/** |
|
||||||
* Queries |
|
||||||
*/ |
|
||||||
require_once dirname(__FILE__).'/config.php'; |
require_once dirname(__FILE__).'/config.php'; |
||||||
TicketPlugin::create()->uninstall(); |
TicketPlugin::create()->uninstall(); |
||||||
|
|||||||
Loading…
Reference in new issue