本文整理汇总了PHP中test::framework_working方法的典型用法代码示例。如果您正苦于以下问题:PHP test::framework_working方法的具体用法?PHP test::framework_working怎么用?PHP test::framework_working使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类test
的用法示例。
在下文中一共展示了test::framework_working方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: updatable
static function updatable()
{
return test::framework_working() && test::config_writable() && test::root_path_write_valid() && test::admin_data_writable() && test::directories_updatable();
}
示例2: foreach
<td class="title"><b>Config is complete</b></td><td>' . (test::config_complete() ? test::ok("YES") : test::invalid("NO. Run configuration again")) . '</td>
</tr></table>
<h3>Directories</h3>
<table cellspacing="0" cellpadding="5" class="tests"><tr>';
foreach (test::directories() as $id => $data) {
print '
<tr>
<td class="title"><b>Folder: ' . $id . '</b>' . ($data['write_required'] ? ' (Needs to be writable)' : '') . '</td>
<td>' . ($data['exists'] ? $data['write_required'] && !$data['writable'] ? test::invalid("Not writable") : test::ok("OK") : test::invalid("NOT FOUND")) . ' (Path: <i>' . $data['path'] . '</i>)</td>
<td style="width: 90px; text-align:right;">' . ($data['updatable'] ? test::ok("Updatable") : test::invalid("Not Updatable")) . '</td>
</tr>';
}
print '</table>
<h3>Loading framework</h3>';
if (!test::framework_working()) {
print ' There are issues with current server configuration. Read above for more info. You can test framework and database connections once all requirements are fulfilled.';
} else {
require get_file("framework", "framework.php")->get_path();
print ' If you see no error above, then include was ' . test::ok("successful") . '
<h3>Initializing framework</h3>';
BF::init();
print ' If you see no error above, then initialization was ' . test::ok("successful") . '
<h3>Database connexions</h3>';
if (count(test::dbconnections()) > 0) {
print '<table cellspacing="0" cellpadding="5" class="tests"><tr>';
foreach (test::dbconnections() as $id => $data) {
$error = false;
try {
BF::load_module("database");
BF::load_module("database." . $data[0]);