Changeset 2639815
- Timestamp:
- 12/06/2021 05:59:33 AM (4 years ago)
- File:
-
- 1 edited
-
outgrow/trunk/outgrow-api.php (modified) (11 diffs)
Legend:
- Unmodified
- Added
- Removed
-
outgrow/trunk/outgrow-api.php
r2635661 r2639815 1 if ( ! defined( 'ABSPATH' ) ) exit; 1 <?php 2 if ( ! defined( 'ABSPATH' ) ) { 3 exit; // Exit if accessed directly 4 } 5 ?> 2 6 <?php 3 7 /* … … 8 12 Version: 2.0 9 13 */ 10 11 14 // include_once "callingDb.php"; 12 13 15 // $apis=array(); 14 15 16 // static $cArray=[]; 16 17 class Outgrow_API_Class { 17 18 18 /** 19 19 * Constructor. Called when the plugin is initialised. … … 25 25 add_action( 'admin_enqueue_scripts', array( &$this, 'admin_scripts_css' ) ); 26 26 } 27 28 27 static $header_script1; 29 28 } 30 31 29 /** 32 30 * Check if the current user can edit Posts or Pages, and is using the Visual Editor … … 259 257 // api_Warning("Please add API Key"); 260 258 ?> 261 262 259 <div class="add-api-msg" id="adding-api-key"> 263 260 <h2>Please Add API KEY</h2> … … 269 266 } 270 267 </script> 271 272 268 <?php 273 269 }else{ … … 296 292 } 297 293 ?> 298 299 294 <div class="super-class"> 300 295 <!-- <div id="loader-div-class" class="loader-class" > --> … … 343 338 <br> 344 339 </div> 345 346 340 <?php 347 348 349 341 global $wpdb; 350 342 $optionAPI = ""; … … 356 348 </div> 357 349 <?php 358 } 359 360 350 } 361 351 ?> 362 </form> 363 352 </form> 364 353 </select> 365 354 </div> … … 396 385 <div id="get-calci-name"></div> 397 386 <?php 398 399 387 include_once "view.php"; 400 401 388 ?> 402 389 … … 417 404 <?php 418 405 } 419 420 406 // delete API 421 407 … … 674 660 </div> 675 661 <?php 676 677 } 678 679 662 } 680 663 ?> 681 664
Note: See TracChangeset
for help on using the changeset viewer.