Changeset 3001670
- Timestamp:
- 11/25/2023 08:15:22 PM (2 years ago)
- Location:
- zooza/trunk
- Files:
-
- 10 edited
-
README.txt (modified) (2 diffs)
-
admin/class-zooza-admin.php (modified) (1 diff)
-
admin/partials/zooza-admin-display.php (modified) (2 diffs)
-
includes/class-zooza-activator.php (modified) (1 diff)
-
includes/class-zooza-deactivator.php (modified) (1 diff)
-
includes/class-zooza-i18n.php (modified) (1 diff)
-
includes/class-zooza-loader.php (modified) (1 diff)
-
includes/class-zooza.php (modified) (1 diff)
-
public/class-zooza-public.php (modified) (1 diff)
-
zooza.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
zooza/trunk/README.txt
r2996609 r3001670 5 5 Requires at least: 3.0.1 6 6 Tested up to: 6.4.0 7 Stable tag: 1.0. 37 Stable tag: 1.0.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 38 38 = 1.0.2 = 39 39 * Fixed loading of Calendar, Video and Checkout widgets 40 41 = 1.0.3 = 42 * Changed contact information 43 44 = 1.0.4 = 45 * Fixed character escaping 46 -
zooza/trunk/admin/class-zooza-admin.php
r2807739 r3001670 1 1 <?php 2 2 if( ! defined( 'ABSPATH' ) ) exit; 3 3 /** 4 4 * The admin-specific functionality of the plugin. -
zooza/trunk/admin/partials/zooza-admin-display.php
r2807739 r3001670 1 1 <?php 2 2 if( ! defined( 'ABSPATH' ) ) exit; 3 3 /** 4 4 * Provide a admin area view for the plugin … … 16 16 <!-- This file should primarily consist of HTML with a little bit of PHP. --> 17 17 <div class="wrap"> 18 <h2><?php _e( 'Zooza', 'zooza' ); ?></h2>18 <h2><?php esc_html_e( 'Zooza', 'zooza' ); ?></h2> 19 19 <?php settings_errors(); ?> 20 20 <!--form method="post" action="options-general.php?page=zooza"--> -
zooza/trunk/includes/class-zooza-activator.php
r2807739 r3001670 1 1 <?php 2 2 if( ! defined( 'ABSPATH' ) ) exit; 3 3 /** 4 4 * Fired during plugin activation -
zooza/trunk/includes/class-zooza-deactivator.php
r2807739 r3001670 1 1 <?php 2 2 if( ! defined( 'ABSPATH' ) ) exit; 3 3 /** 4 4 * Fired during plugin deactivation -
zooza/trunk/includes/class-zooza-i18n.php
r2807739 r3001670 1 1 <?php 2 2 if( ! defined( 'ABSPATH' ) ) exit; 3 3 /** 4 4 * Define the internationalization functionality -
zooza/trunk/includes/class-zooza-loader.php
r2807739 r3001670 1 1 <?php 2 2 if( ! defined( 'ABSPATH' ) ) exit; 3 3 /** 4 4 * Register all actions and filters for the plugin -
zooza/trunk/includes/class-zooza.php
r2863220 r3001670 1 1 <?php 2 2 if( ! defined( 'ABSPATH' ) ) exit; 3 3 /** 4 4 * The file that defines the core plugin class -
zooza/trunk/public/class-zooza-public.php
r2863220 r3001670 1 1 <?php 2 2 if( ! defined( 'ABSPATH' ) ) exit; 3 3 /** 4 4 * The public-facing functionality of the plugin. -
zooza/trunk/zooza.php
r2863220 r3001670 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'ZOOZA_VERSION', '1.0. 2' );38 define( 'ZOOZA_VERSION', '1.0.4' ); 39 39 40 40 /**
Note: See TracChangeset
for help on using the changeset viewer.