Changeset 2461037
- Timestamp:
- 01/22/2021 02:53:59 PM (5 years ago)
- Location:
- daisycon/trunk
- Files:
-
- 5 edited
-
daisycon.php (modified) (1 diff)
-
includes/database.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
tools/energy_nl.php (modified) (1 diff)
-
tools/prefill_energy_nl.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
daisycon/trunk/daisycon.php
r2426585 r2461037 6 6 Description: Promoot adverteerders van Daisycon eenvoudig en goed met de verschillende professionele prijsvergelijkers voor WordPress-publishers. Met deze plugin kun je eenvoudig en snel een vergelijkingssite maken. De plugin bevat op dit moment alle vergelijkers en zal regelmatig worden aangevuld met nieuwe tools, dus houd de updates in de gaten! 7 7 Author: Daisycon 8 Version: 4. 08 Version: 4.2 9 9 Author URI: https://www.daisycon.com 10 10 */ -
daisycon/trunk/includes/database.php
r2426585 r2461037 45 45 } 46 46 } 47 // 4.2 and lower - force default color text secondary update for energy 48 $database_data = $wpdb->get_results("SELECT `tools`.`id` FROM `" . $wpdb->prefix . "daisycon_tools` AS `tools` INNER JOIN `" . $wpdb->prefix . "daisycon_tools_settings` AS `settings` ON (`tools`.`id` = `settings`.`profile_id`) WHERE `tools`.`tool`='energy_nl' AND `settings`.`name`='color_text_secondary' AND `settings`.`value`='#ffffff';"); 49 if (0 !== count($database_data)) 50 { 51 $update_4_2 = "UPDATE `" . $wpdb->prefix . "daisycon_tools_settings` AS `settings` INNER JOIN `" . $wpdb->prefix . "daisycon_tools` AS `tools` ON (`tools`.`id` = `settings`.`profile_id`) SET `value`='#888888' WHERE `tools`.`tool`='energy_nl' AND `settings`.`name`='color_text_secondary' AND `settings`.`value`='#ffffff';"; 52 $wpdb->query($update_4_2); 53 } 47 54 48 55 function createData($table_name) -
daisycon/trunk/readme.txt
r2426585 r2461037 78 78 == Changelog == 79 79 80 = 4.2 = 81 * Default actie tekst kleur bij energie en prefill energie bijgewerkt 82 80 83 = 4.1 = 81 84 * Prefill energie tool beheer en tool toegevoegd -
daisycon/trunk/tools/energy_nl.php
r2426585 r2461037 21 21 'color_secondary' => '#FF8201', 22 22 'color_text_primary' => '#626262', 23 'color_text_secondary' => '# FFFFFF',23 'color_text_secondary' => '#888888', 24 24 'profile_id' => (false === empty($_POST['profile_id']) ? $_POST['profile_id'] : ''), 25 25 'tool_name' => 'energy_nl', -
daisycon/trunk/tools/prefill_energy_nl.php
r2426585 r2461037 21 21 'color_secondary' => '#FF8201', 22 22 'color_text_primary' => '#FFFFFF', 23 'color_text_secondary' => '# 626262',23 'color_text_secondary' => '#888888', 24 24 'profile_id' => (false === empty($_POST['profile_id']) ? $_POST['profile_id'] : ''), 25 25 'tool_name' => 'prefill_energy_nl',
Note: See TracChangeset
for help on using the changeset viewer.