Plugin Directory

Changeset 2461037


Ignore:
Timestamp:
01/22/2021 02:53:59 PM (5 years ago)
Author:
Daisycon
Message:

Small update to the default color of the 'Actie tekst kleur' for the Energy and Prefill energy tools

Location:
daisycon/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • daisycon/trunk/daisycon.php

    r2426585 r2461037  
    66Description: 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!
    77Author: Daisycon
    8 Version: 4.0
     8Version: 4.2
    99Author URI: https://www.daisycon.com
    1010 */
  • daisycon/trunk/includes/database.php

    r2426585 r2461037  
    4545    }
    4646}
     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';");
     49if (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}
    4754
    4855function createData($table_name)
  • daisycon/trunk/readme.txt

    r2426585 r2461037  
    7878== Changelog ==
    7979
     80= 4.2 =
     81* Default actie tekst kleur bij energie en prefill energie bijgewerkt
     82
    8083= 4.1 =
    8184* Prefill energie tool beheer en tool toegevoegd
  • daisycon/trunk/tools/energy_nl.php

    r2426585 r2461037  
    2121            'color_secondary'      => '#FF8201',
    2222            'color_text_primary'   => '#626262',
    23             'color_text_secondary' => '#FFFFFF',
     23            'color_text_secondary' => '#888888',
    2424            'profile_id'           => (false === empty($_POST['profile_id']) ? $_POST['profile_id'] : ''),
    2525            'tool_name'            => 'energy_nl',
  • daisycon/trunk/tools/prefill_energy_nl.php

    r2426585 r2461037  
    2121            'color_secondary'      => '#FF8201',
    2222            'color_text_primary'   => '#FFFFFF',
    23             'color_text_secondary' => '#626262',
     23            'color_text_secondary' => '#888888',
    2424            'profile_id'           => (false === empty($_POST['profile_id']) ? $_POST['profile_id'] : ''),
    2525            'tool_name'            => 'prefill_energy_nl',
Note: See TracChangeset for help on using the changeset viewer.