Changeset 2705198
- Timestamp:
- 04/05/2022 03:28:31 PM (4 years ago)
- Location:
- chat-life-telegram/trunk
- Files:
-
- 1 added
- 4 edited
-
frontend/css/white-theme.css (added)
-
index.php (modified) (1 diff)
-
init.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
src/ChatCore.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
chat-life-telegram/trunk/index.php
r2699569 r2705198 9 9 Description: Allows you to make a chat on the site and answer online via Telegram chat 10 10 Author: Pechenki 11 Version: 0.1. 111 Version: 0.1.2 12 12 Author URI: https://pechenki.top/ 13 13 */ -
chat-life-telegram/trunk/init.php
r2682025 r2705198 24 24 * @var string 25 25 */ 26 public $version = '0. 99';26 public $version = '0.1.2'; 27 27 /** 28 28 * @var ControllerForTelegram -
chat-life-telegram/trunk/readme.txt
r2699569 r2705198 24 24 25 25 == Changelog == 26 = 0.1.2 = 27 * add new theme white theme round button 28 26 29 = 0.1.1 = 27 30 * fix /wp-content/plugins/chat-life-telegram/src/AdminController.php -
chat-life-telegram/trunk/src/ChatCore.php
r2682025 r2705198 23 23 add_filter('sanitize_option_tcl', array($this, 'filter_function_save_option'), 10, 3); 24 24 add_filter('tcl_theme_list', function ($data) { 25 $data[ 2] = [25 $data[] = [ 26 26 'name' => 'Ios', 27 27 'url' => TCL_URL_PLUGIN . 'frontend/css/ios-theme.css', 28 ]; 29 $data[] = [ 30 'name' => 'White', 31 'url' => TCL_URL_PLUGIN . 'frontend/css/white-theme.css', 28 32 ]; 29 33 return $data;
Note: See TracChangeset
for help on using the changeset viewer.