2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 08/27/2008 *
4 * =================== Last change: 08/27/2008 *
6 * -------------------------------------------------------------------- *
7 * File : ext-yoomedia.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Extension for contacting the API of Yoo!Media *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Erweitertung zur Anbindung an die API von *
13 * -------------------------------------------------------------------- *
16 * $Tag:: 0.2.1-FINAL $ *
18 * Needs to be in all Files and every File needs "svn propset *
19 * svn:keywords Date Revision" (autoprobset!) at least!!!!!! *
20 * -------------------------------------------------------------------- *
21 * Copyright (c) 2003 - 2009 by Roland Haeder *
22 * Copyright (c) 2009, 2010 by Mailer Developer Team *
23 * For more information visit: http://www.mxchange.org *
25 * This program is free software; you can redistribute it and/or modify *
26 * it under the terms of the GNU General Public License as published by *
27 * the Free Software Foundation; either version 2 of the License, or *
28 * (at your option) any later version. *
30 * This program is distributed in the hope that it will be useful, *
31 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
32 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
33 * GNU General Public License for more details. *
35 * You should have received a copy of the GNU General Public License *
36 * along with this program; if not, write to the Free Software *
37 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
39 ************************************************************************/
41 // Some security stuff...
42 if (!defined('__SECURITY')) {
47 setThisExtensionVersion('0.0');
49 // Version history array (add more with , '0.1.0' and so on)
50 setExtensionVersionHistory(array('0.0'));
52 // Keep this extension always active!
53 setExtensionAlwaysActive('Y');
55 // This extension is deprecated!
56 // @TODO Only deprecated when 'ext-network' is ready! setExtensionDeprecated('Y');
58 switch (getExtensionMode()) {
59 case 'register': // Do stuff when installation is running (modules.php?module=admin is called)
60 // SQL commands to run
61 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `yoomedia_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0");
62 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `yoomedia_sid` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0");
63 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `yoomedia_passwd` VARCHAR(255) NOT NULL DEFAULT ''");
64 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `yoomedia_erotic_allowed` TINYINT(2) UNSIGNED NOT NULL DEFAULT 0");
65 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `yoomedia_tm_max_reload` SMALLINT(6) UNSIGNED NOT NULL DEFAULT ".(24 * 8)."");
66 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `yoomedia_tm_min_wait` SMALLINT(6) UNSIGNED NOT NULL DEFAULT 60");
67 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `yoomedia_tm_clicks_remain` INT(7) UNSIGNED NOT NULL DEFAULT 1000");
68 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `yoomedia_tm_min_pay` FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00000");
69 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `yoomedia_requests_total` SMALLINT(6) UNSIGNED NOT NULL DEFAULT 200");
70 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `yoomedia_requests_remain` SMALLINT(6) UNSIGNED NOT NULL DEFAULT 200");
73 addAdminMenuSql('setup','config_yoomedia','Yoo!Media Interface 2.0','Einstellungen zum Yoo!Media Interface 2.0, wie Affiliate-Id, Interface-Passwort und vieles mehr.',17);
74 addAdminMenuSql('email','list_yoomedia_tm','Yoo!Media Textmails','Listet Textmail-Buchungen über das Interface 2.0 von Yoo!Media nach Ihren eingestellten Kriterien auf. <strong>Vorsicht:</strong> Jede Aktualisierung dieser Liste kostet Ihnen eine Abfrage!',10);
77 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_yoomedia_reload`');
78 addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_yoomedia_reload` (
79 `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
80 `type` VARCHAR(255) NOT NULL DEFAULT 'general',
81 `y_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
82 `y_reload` SMALLINT(6) UNSIGNED NOT NULL DEFAULT 0,
83 `inserted` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
85 UNIQUE `y_type` (`type`,`y_id`)
86 ) TYPE={?_TABLE_TYPE?} COMMENT='Reload lock reminder for Yoo!Media campaigns'");
89 case 'remove': // Do stuff when removing extension
90 // SQL commands to run
91 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `what` IN('config_yoomedia','list_yoomedia_tm')");
92 addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_yoomedia_reload`');
95 case 'activate': // Do stuff when admin activates this extension
96 // SQL commands to run
99 case 'deactivate': // Do stuff when admin deactivates this extension
100 // SQL commands to run
103 case 'update': // Update an extension
104 switch (getCurrentExtensionVersion())
106 case '0.0.1': // SQL queries for v0.0.1
109 // Update notes (these will be set as task text!)
110 setExtensionUpdateNotes('');
115 case 'modify': // When the extension got modified
118 case 'test': // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
121 case 'init': // Do stuff when extension is initialized
122 // The translation table
123 // @TODO Can this be moved into a database table?
124 $GLOBALS['translation_tables']['yoomedia'] = array(
126 'error_codes' => array(
127 -999 => 'unknown_error',
130 3 => 'website_locked',
131 4 => 'api_data_error',
132 5 => 'requests_depleted',
134 7 => 'no_campaigns_with_interface',
135 10 => 'incomplete_request'
150 default: // Unknown extension mode
151 logDebugMessage(__FILE__, __LINE__, sprintf("Unknown extension mode %s in extension %s detected.", getExtensionMode(), getCurrentExtensionName()));