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
private function decideOnLocaleId () | |
{ | |
if ( is_null ( $this -> localeId ) ) | |
{ | |
var_dump ( $this -> plansLangs -> getLocales () -> getRes () ) ; | |
var_dump ( $this -> plansLangs -> getLocales () -> getRes () ) ; | |
$locales = $this -> plansLangs -> getLocales () -> getRes () ; | |
var_dump ( $locales ) ;//NULL | |
return $locales[ 0 ][ $this -> plansLangs -> getLocales () -> getPkName () ] ; |
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 | |
$json['title'] = "Documents JSON"; | |
$json['description'] = "All the documents per company"; | |
$json['generator'] = "https://xxxxx.com/"; | |
$json['documents'] = array(); | |
foreach($docs as $doc) { |
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
$billingArray = array(); | |
while (have_checkout_items()) { | |
the_checkout_item(); | |
$billingArray[] = array( | |
"id" => form_element_id(), | |
"name" => checkout_form_name(), | |
"form" => checkout_form_field(), | |
); | |
echo "hey"; | |
} |
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
<html> | |
<head> | |
<title></title> | |
<?php include('menu.php'); ?> | |
</head> | |
<body> | |
<?php include('content.php'); ?> | |
</body> | |
</html> |