Plugin Directory

Changeset 2869572


Ignore:
Timestamp:
02/22/2023 06:11:28 PM (3 years ago)
Author:
podiumsupport
Message:

adds new assets and views folder

Location:
podium/trunk
Files:
16 added
3 edited

Legend:

Unmodified
Added
Removed
  • podium/trunk/README.md

    r2869534 r2869572  
    33Contributors: Podium 
    44Tags: Podium, Podium Webchat, Webchat, Texting, Chat Widget
    5 Version: 2.0.3 
    6 Stable Tag: 2.0.3 
     5Version: 2.0.4 
     6Stable Tag: 2.0.4 
    77License: GPLv2 or later 
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html 
  • podium/trunk/podium.php

    r2869534 r2869572  
    66/*
    77 * Plugin Name: Podium
    8  * Version: 2.0.3
    9  * Stable Tag: 2.0.3
     8 * Version: 2.0.4
     9 * Stable Tag: 2.0.4
    1010 * Description: Allow customers to text you right from your website, capture them as leads, and convert them to customers. Install Podium on your WordPress site in just a few clicks.
    1111 * Author: Podium
     
    8686    * Define
    8787    */
    88     define('podium_4f050d29b8BB9_VERSION', '2.0.3');
     88    define('podium_4f050d29b8BB9_VERSION', '2.0.4');
    8989    define('podium_4f050d29b8BB9_DIR', plugin_dir_path(__FILE__));
    9090    define('podium_4f050d29b8BB9_URL', plugin_dir_url(__FILE__));
     
    129129        if (isset($_GET['settings-updated'])) {
    130130            if (get_option('podium-script-code') == '') {
    131                 require_once(PODIUM_DIR_PATH . 'views/flash-messages/warning.php');
     131                include(PODIUM_DIR_PATH . 'views/flash-messages/warning.php');
    132132            }
    133133        }
     
    166166        $podium_installation = get_option('podium-installation') != null ? get_option('podium-installation') : false;
    167167
    168         require_once(PODIUM_DIR_PATH . 'views/content.php');
     168        include(PODIUM_DIR_PATH . 'views/content.php');
    169169    }
    170170
     
    182182        $flash_actions = array(
    183183            'success' => function() {
    184                 require_once(PODIUM_DIR_PATH . 'views/flash-messages/success.php');
     184                include(PODIUM_DIR_PATH . 'views/flash-messages/success.php');
    185185            },
    186186            'error' => function() {
    187                 require_once(PODIUM_DIR_PATH . 'views/flash-messages/error.php');
     187                include(PODIUM_DIR_PATH . 'views/flash-messages/error.php');
    188188            },
    189189            'warning' => function() {
    190                 require_once(PODIUM_DIR_PATH . 'views/flash-messages/warning.php');
     190                include(PODIUM_DIR_PATH . 'views/flash-messages/warning.php');
    191191            }
    192192        );
     
    307307
    308308        if (! empty($podium_script_code)){
    309             require_once(PODIUM_DIR_PATH . 'views/script-code.php');
     309            include(PODIUM_DIR_PATH . 'views/script-code.php');
    310310        }
    311311    }
  • podium/trunk/readme.txt

    r2869534 r2869572  
    33Contributors: Podium 
    44Tags: Podium, Podium Webchat, Webchat, Texting, Chat Widget
    5 Version: 2.0.3 
    6 Stable Tag: 2.0.3 
     5Version: 2.0.4 
     6Stable Tag: 2.0.4 
    77License: GPLv2 or later 
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html 
Note: See TracChangeset for help on using the changeset viewer.