Changeset 2799077
- Timestamp:
- 10/14/2022 06:10:41 PM (3 years ago)
- Location:
- hngamers-atavism-core
- Files:
-
- 2 added
- 4 edited
- 1 copied
-
assets/banner-772x250.png (added)
-
assets/icon-256x256.png (added)
-
tags/0.0.3 (copied) (copied from hngamers-atavism-core/trunk)
-
tags/0.0.3/hngamerscore.php (modified) (4 diffs)
-
tags/0.0.3/readme.txt (modified) (3 diffs)
-
trunk/hngamerscore.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hngamers-atavism-core/tags/0.0.3/hngamerscore.php
r2795790 r2799077 12 12 * Plugin URI: https://hngamers.com/courses/development/atavism/atavism-wordpress-cms/ 13 13 * Description: These are the Core Atavism Settings and are used in each of the addon plugins that will be coming. 14 * Version: 0.0. 214 * Version: 0.0.3 15 15 * Author: thevisad 16 16 * Author URI: https://hngamers.com/ … … 285 285 $thisOption = get_option('hngamers_core_options'); 286 286 ?> 287 <input id='<? =$i?>' name='hngamers_core_options[<?=$i?>]' size='32' type='text' value="<?php esc_attr_e($thisOption[$i] ); ?>" />287 <input id='<?php echo esc_html( $i)?>' name='hngamers_core_options[<?php echo esc_html( $i)?>]' size='32' type='text' value="<?php esc_attr_e($thisOption[$i] ); ?>" /> 288 288 <?php 289 289 } … … 330 330 { 331 331 global $thisOption_array; 332 $thisOption = get_option('hngamers_core_options');333 332 $thisOption_array = array( 334 333 "hngamers_atavism_recaptcha_apikey_priv_string" => "YOUR_RECAPTHA_PRIVATE_KEY", … … 372 371 } 373 372 //Initialize plugin 374 new hngamers_atavism_core();373 $hngamers_atavism_core = new hngamers_atavism_core(); -
hngamers-atavism-core/tags/0.0.3/readme.txt
r2795790 r2799077 5 5 Tested up to: 6.0 6 6 Requires PHP: 5.6 7 Stable tag: 0.0. 27 Stable tag: 0.0.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 14 14 == Description == 15 15 16 17 = Members Only Products = 18 19 = Members Only Store = 20 21 22 = Catalog Mode for Non-Members = 16 This is the core Atavism script and is required by all the other scripts. This provides the database connectivity, the variables for this and the admin panel which provides the ability to save database settings for up to 10 servers. 23 17 24 18 25 19 == Frequently Asked Questions == 20 How do I use the plugin or setup it up? 21 Please follow the course here https://hngamers.com/courses/development/atavism/atavism-wordpress-cms/ 22 Where do I get support? 23 All support is through the #cms-dev channel in the Atavism Online discord https://discord.gg/sEPQmtjg9N 26 24 27 25 = I found a bug in the plugin. = 26 Please report all bugs on the #cms-dev channel in the Atavism Online discord https://discord.gg/sEPQmtjg9N 28 27 29 28 == Screenshots == … … 31 30 32 31 == Changelog == 32 = 0.0.3 = 33 Some minor code cleanup 34 Add character user detection and server detection 33 35 = 0.0.2 = 34 36 Corrected issue with echoed variables. -
hngamers-atavism-core/trunk/hngamerscore.php
r2795790 r2799077 12 12 * Plugin URI: https://hngamers.com/courses/development/atavism/atavism-wordpress-cms/ 13 13 * Description: These are the Core Atavism Settings and are used in each of the addon plugins that will be coming. 14 * Version: 0.0. 214 * Version: 0.0.3 15 15 * Author: thevisad 16 16 * Author URI: https://hngamers.com/ … … 285 285 $thisOption = get_option('hngamers_core_options'); 286 286 ?> 287 <input id='<? =$i?>' name='hngamers_core_options[<?=$i?>]' size='32' type='text' value="<?php esc_attr_e($thisOption[$i] ); ?>" />287 <input id='<?php echo esc_html( $i)?>' name='hngamers_core_options[<?php echo esc_html( $i)?>]' size='32' type='text' value="<?php esc_attr_e($thisOption[$i] ); ?>" /> 288 288 <?php 289 289 } … … 330 330 { 331 331 global $thisOption_array; 332 $thisOption = get_option('hngamers_core_options');333 332 $thisOption_array = array( 334 333 "hngamers_atavism_recaptcha_apikey_priv_string" => "YOUR_RECAPTHA_PRIVATE_KEY", … … 372 371 } 373 372 //Initialize plugin 374 new hngamers_atavism_core();373 $hngamers_atavism_core = new hngamers_atavism_core(); -
hngamers-atavism-core/trunk/readme.txt
r2795790 r2799077 5 5 Tested up to: 6.0 6 6 Requires PHP: 5.6 7 Stable tag: 0.0. 27 Stable tag: 0.0.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 14 14 == Description == 15 15 16 17 = Members Only Products = 18 19 = Members Only Store = 20 21 22 = Catalog Mode for Non-Members = 16 This is the core Atavism script and is required by all the other scripts. This provides the database connectivity, the variables for this and the admin panel which provides the ability to save database settings for up to 10 servers. 23 17 24 18 25 19 == Frequently Asked Questions == 20 How do I use the plugin or setup it up? 21 Please follow the course here https://hngamers.com/courses/development/atavism/atavism-wordpress-cms/ 22 Where do I get support? 23 All support is through the #cms-dev channel in the Atavism Online discord https://discord.gg/sEPQmtjg9N 26 24 27 25 = I found a bug in the plugin. = 26 Please report all bugs on the #cms-dev channel in the Atavism Online discord https://discord.gg/sEPQmtjg9N 28 27 29 28 == Screenshots == … … 31 30 32 31 == Changelog == 32 = 0.0.3 = 33 Some minor code cleanup 34 Add character user detection and server detection 33 35 = 0.0.2 = 34 36 Corrected issue with echoed variables.
Note: See TracChangeset
for help on using the changeset viewer.