- ALL classes are E_NOTICE safe as far as possible. There might be some minor things left over which will be cleaned up in further testing - Added declare(strict_types=1); on all pages for trying to make all calls strict - Added page_content sub content to edit_page, with this some inner page content with ACL can be set, eg for use with Ajax/JS calls with backend. Also alias can be set so the control ajax pages can back reference to the master page content setting. Currently only one back reference is allowed - Note that the PAGES array has no numeric indexes, but uses the cuid as index
18 lines
247 B
PHP
Executable File
18 lines
247 B
PHP
Executable File
<?php declare(strict_types=1);
|
|
|
|
// debug for L10n issues in php 7.3
|
|
|
|
// namespace test
|
|
ob_start();
|
|
|
|
$lang = 'en_utf8';
|
|
|
|
// admin class tests
|
|
require 'config.php';
|
|
$l = new CoreLibs\Language\L10n($lang);
|
|
|
|
echo "OK<br>";
|
|
|
|
ob_end_flush();
|
|
// __END__
|