This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ( defined('CBXPHPSPREADSHEET_PLUGIN_NAME') && cbxphpspreadsheet_loadable() ) { | |
//Include PHPExcel | |
require_once( CBXPHPSPREADSHEET_ROOT_PATH . 'lib/vendor/autoload.php' ); //or use 'cbxphpspreadsheet_load();' | |
//now take instance | |
$objPHPExcel = new \PhpOffice\PhpSpreadsheet\Spreadsheet(); | |
//do whatever you need to do | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class CBXChangelogOptionAsArray { | |
private $optionName; | |
private $primaryKey; | |
private $data = []; | |
private $nextIndex = 1; | |
private $usedKeys = []; | |
public function __construct($optionName = 'custom_optionname', $primaryKey = 'id') { | |
$this->primaryKey = $primaryKey; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class CBXChangelogMetaAsArray { | |
private $postId; // The post ID to which meta data will be saved | |
private $primaryKey; | |
private $metakey; // Meta key for saving and loading data | |
private $data = []; | |
private $nextIndex = 1; | |
private $usedKeys = []; // Track all used keys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class TableDateFieldAsArray { | |
private $postId; // The post ID for context | |
private $primaryKey; // Primary key for rows | |
private $tableName; // Custom table name | |
private $fieldName; // Field in the table to store serialized data | |
private $data = []; // The actual data | |
private $nextIndex = 1; | |
private $usedKeys = []; // Track all used keys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
"Abbey", | |
"Aboriginal and Torres Strait Islander organization", | |
"Aboriginal art gallery", | |
"Abortion clinic", | |
"Abrasives supplier", | |
"Abundant Life church", | |
"Accountant", | |
"Accounting firm", | |
"Accounting school", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'ALL' => 'Albania Lek', | |
'AFN' => 'Afghanistan Afghani', | |
'ARS' => 'Argentina Peso', | |
'AWG' => 'Aruba Guilder', | |
'AUD' => 'Australia Dollar', | |
'AZN' => 'Azerbaijan New Manat', | |
'BSD' => 'Bahamas Dollar', | |
'BBD' => 'Barbados Dollar', | |
'BDT' => 'Bangladeshi Taka', | |
'BYR' => 'Belarus Ruble', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//fix: w3 total cache minify missing css of woocommerce core | |
add_filter( 'woocommerce_enqueue_styles', 'codeboxr_woocommerce_enqueue_styles' ); | |
if(!function_exists('codeboxr_woocommerce_enqueue_styles')){ | |
function codeboxr_woocommerce_enqueue_styles($arr){ | |
unset($arr['woocommerce-smallscreen']); | |
return $arr; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(funcName, baseObj) { | |
// The public function name defaults to window.docReady | |
// but you can pass in your own object and own function name and those will be used | |
// if you want to put them in a different namespace | |
funcName = funcName || "docReady"; | |
baseObj = baseObj || window; | |
var readyList = []; | |
var readyFired = false; | |
var readyEventHandlersInstalled = false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Contact form map start | |
var map_id = $('#map_canvas'); | |
if (map_id.length > 0) { | |
var $lat = map_id.data('lat'), | |
$lng = map_id.data('lng'), | |
$zoom = map_id.data('zoom'), | |
$maptitle = map_id.data('maptitle'), | |
$mapaddress = map_id.data('mapaddress'), | |
mymap = L.map('map_canvas').setView([$lat, $lng], $zoom); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function countries_code() | |
{ | |
$countries = array( | |
array('id' => '1', 'name' => 'Afghanistan', 'iso_code' => 'AF', 'phonecode' => '+93'), | |
/*array('id' => '2', 'name' => 'Aland Islands', 'iso_code' => 'AX', 'phonecode' => '+358-18'),*/ | |
array('id' => '3', 'name' => 'Albania', 'iso_code' => 'AL', 'phonecode' => '+355'), | |
array('id' => '4', 'name' => 'Algeria', 'iso_code' => 'DZ', 'phonecode' => '+213'), | |
/*array('id' => '5', 'name' => 'American Samoa', 'iso_code' => 'AS', 'phonecode' => '+1-684'),*/ | |
array('id' => '6', 'name' => 'Andorra', 'iso_code' => 'AD', 'phonecode' => '+376'), | |
array('id' => '7', 'name' => 'Angola', 'iso_code' => 'AO', 'phonecode' => '+244'), |
NewerOlder