You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
661 B
15 lines
661 B
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
/**
|
|
* Config the plugin
|
|
* @author Daniel Alejandro Barreto Alva <daniel.barreto@beeznest.com>
|
|
* @package chamilo.plugin.advanced_subscription
|
|
*/
|
|
|
|
define('TABLE_ADV_SUB_QUEUE', 'plugin_advsub_queue');
|
|
define('TABLE_ADV_SUB_MAIL', 'plugin_advsub_mail');
|
|
define('TABLE_ADV_SUB_MAIL_TYPE', 'plugin_advsub_mail_type');
|
|
define('TABLE_ADV_SUB_MAIL_STATUS', 'plugin_advsub_mail_status');
|
|
require_once __DIR__ . '/../../main/inc/global.inc.php';
|
|
require_once api_get_path(LIBRARY_PATH) . 'plugin.class.php';
|
|
require_once api_get_path(PLUGIN_PATH) . 'advancedsubscription/src/advanced_subscription_plugin.class.php';
|
|
|