- Timestamp:
- 11/21/2023 09:37:42 AM (2 years ago)
- Location:
- cookiehub/trunk
- Files:
-
- 7 edited
-
cookiehub.php (modified) (1 diff)
-
includes/ch-admin.php (modified) (1 diff)
-
includes/ch-register-domain.php (modified) (1 diff)
-
includes/ch-settings.php (modified) (4 diffs)
-
includes/ch-sidebar.php (modified) (1 diff)
-
includes/ch-toolbar.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cookiehub/trunk/cookiehub.php
r2999438 r2999447 4 4 Plugin URI: https://www.cookiehub.com/wordpress 5 5 Description: Take control effortlessly with CookieHub – GDPR-compliant solution for cookie management and compliance. 6 Version: 1.0. 06 Version: 1.0.1 7 7 Author: CookieHub 8 8 Author URI: https://www.cookiehub.com/ -
cookiehub/trunk/includes/ch-admin.php
r2999436 r2999447 51 51 public function dcchub_page_init() 52 52 { 53 wp_register_style( 'dcchub_style', plugins_url( '/css/dcchub-admin.css? 0.1', __FILE__ ));53 wp_register_style( 'dcchub_style', plugins_url( '/css/dcchub-admin.css?1.0', __FILE__ )); 54 54 wp_enqueue_style('dcchub_style'); 55 55 wp_register_script( 'dcchub_test', plugins_url( '/js/dcchub-test.js', __FILE__ ), array ('jquery') ,'', false); -
cookiehub/trunk/includes/ch-register-domain.php
r2999436 r2999447 2 2 class DCCHUBRegisterDomain 3 3 { 4 public function dcchub_register_page_html() {4 public static function dcchub_register_page_html() { 5 5 ?> 6 6 <h3 class="dcchub-header page-header">Thank you for installing the CookieHub Wordpress Plugin</h3> -
cookiehub/trunk/includes/ch-settings.php
r2999436 r2999447 2 2 class DCCHUBSettings 3 3 { 4 public function dcchub_register_page_html($options) {4 public static function dcchub_register_page_html($options) { 5 5 //Get the active tab from the $_GET param 6 6 $default_tab = null; … … 34 34 } 35 35 36 function dcchub_general_settings($options) {36 static function dcchub_general_settings($options) { 37 37 $assets_url = plugins_url('assets', __FILE__); 38 38 ?> … … 85 85 } 86 86 87 function dcchub_advanced_settings($options) {87 static function dcchub_advanced_settings($options) { 88 88 $hasOther = (isset( $options['dcchub_other_head'] ) && $options['dcchub_other_head'] != "") || (isset( $options['dcchub_other_body'] ) && $options['dcchub_other_body'] != ""); 89 89 ?> … … 157 157 } 158 158 159 function tagsBox($sectionHead, $sectionBody, $options) {159 static function tagsBox($sectionHead, $sectionBody, $options) { 160 160 printf( 161 161 '<p class="dcchub-p" style="margin-top:0px;">Head</p> -
cookiehub/trunk/includes/ch-sidebar.php
r2999436 r2999447 2 2 class DCCHUBSidebar 3 3 { 4 public function sidebar() {4 public static function sidebar() { 5 5 ?> 6 6 <div class="dcchub-wrap dcchub-box side"> -
cookiehub/trunk/includes/ch-toolbar.php
r2999436 r2999447 2 2 class DCCHUBToolbar 3 3 { 4 public function toolbar() {4 public static function toolbar() { 5 5 $assets_url = plugins_url('assets', __FILE__); 6 6 ?> -
cookiehub/trunk/readme.txt
r2999436 r2999447 4 4 Requires at least: 5.2 5 5 Tested up to: 6.4.1 6 Stable tag: 1.0. 06 Stable tag: 1.0.1 7 7 License: GPLv2 or later 8 8
Note: See TracChangeset
for help on using the changeset viewer.