• File: install.php
  • Full Path: /home/dealkatnwc/www/plugins/easy-timer/includes/install.php
  • Date Modified: 01/15/2026 11:06 PM
  • File size: 513 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php if (!defined('ABSPATH')) { exit(); }
load_easy_timer_textdomain();
include easy_timer_path('initial-options.php');
$options = (array) get_option('easy_timer');
$current_options = $options;
if ((isset($options[0])) && ($options[0] === false)) { unset($options[0]); }
foreach ($initial_options as $key => $value) {
if (($key == 'version') || (!isset($options[$key])) || ($options[$key] == '')) { $options[$key] = $value; } }
if ($options != $current_options) { update_option('easy_timer', $options); }