Changeset 2869572
- Timestamp:
- 02/22/2023 06:11:28 PM (3 years ago)
- Location:
- podium/trunk
- Files:
-
- 16 added
- 3 edited
-
README.md (modified) (1 diff)
-
assets (added)
-
assets/bottom-left.png (added)
-
assets/bottom-right.png (added)
-
assets/connected-icon.svg (added)
-
assets/podium-logo.svg (added)
-
assets/style.css (added)
-
assets/top-left.png (added)
-
assets/top-right.png (added)
-
podium.php (modified) (6 diffs)
-
readme.txt (modified) (1 diff)
-
uninstall.php (added)
-
views (added)
-
views/content.php (added)
-
views/flash-messages (added)
-
views/flash-messages/error.php (added)
-
views/flash-messages/success.php (added)
-
views/flash-messages/warning.php (added)
-
views/script-code.php (added)
Legend:
- Unmodified
- Added
- Removed
-
podium/trunk/README.md
r2869534 r2869572 3 3 Contributors: Podium 4 4 Tags: Podium, Podium Webchat, Webchat, Texting, Chat Widget 5 Version: 2.0. 36 Stable Tag: 2.0. 35 Version: 2.0.4 6 Stable Tag: 2.0.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
podium/trunk/podium.php
r2869534 r2869572 6 6 /* 7 7 * Plugin Name: Podium 8 * Version: 2.0. 39 * Stable Tag: 2.0. 38 * Version: 2.0.4 9 * Stable Tag: 2.0.4 10 10 * 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. 11 11 * Author: Podium … … 86 86 * Define 87 87 */ 88 define('podium_4f050d29b8BB9_VERSION', '2.0. 3');88 define('podium_4f050d29b8BB9_VERSION', '2.0.4'); 89 89 define('podium_4f050d29b8BB9_DIR', plugin_dir_path(__FILE__)); 90 90 define('podium_4f050d29b8BB9_URL', plugin_dir_url(__FILE__)); … … 129 129 if (isset($_GET['settings-updated'])) { 130 130 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'); 132 132 } 133 133 } … … 166 166 $podium_installation = get_option('podium-installation') != null ? get_option('podium-installation') : false; 167 167 168 require_once(PODIUM_DIR_PATH . 'views/content.php');168 include(PODIUM_DIR_PATH . 'views/content.php'); 169 169 } 170 170 … … 182 182 $flash_actions = array( 183 183 'success' => function() { 184 require_once(PODIUM_DIR_PATH . 'views/flash-messages/success.php');184 include(PODIUM_DIR_PATH . 'views/flash-messages/success.php'); 185 185 }, 186 186 'error' => function() { 187 require_once(PODIUM_DIR_PATH . 'views/flash-messages/error.php');187 include(PODIUM_DIR_PATH . 'views/flash-messages/error.php'); 188 188 }, 189 189 'warning' => function() { 190 require_once(PODIUM_DIR_PATH . 'views/flash-messages/warning.php');190 include(PODIUM_DIR_PATH . 'views/flash-messages/warning.php'); 191 191 } 192 192 ); … … 307 307 308 308 if (! empty($podium_script_code)){ 309 require_once(PODIUM_DIR_PATH . 'views/script-code.php');309 include(PODIUM_DIR_PATH . 'views/script-code.php'); 310 310 } 311 311 } -
podium/trunk/readme.txt
r2869534 r2869572 3 3 Contributors: Podium 4 4 Tags: Podium, Podium Webchat, Webchat, Texting, Chat Widget 5 Version: 2.0. 36 Stable Tag: 2.0. 35 Version: 2.0.4 6 Stable Tag: 2.0.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.