本文整理汇总了PHP中Extension::get_main_file方法的典型用法代码示例。如果您正苦于以下问题:PHP Extension::get_main_file方法的具体用法?PHP Extension::get_main_file怎么用?PHP Extension::get_main_file使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Extension
的用法示例。
在下文中一共展示了Extension::get_main_file方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: io_handler
/**
* @param string $alias
* @throws BaseExtensionClassNotFoundException
* @throws BaseExtensionFileNotFoundException
*/
public static function io_handler($alias)
{
if ($_GET['extension']) {
$extension = new Extension($_GET['extension']);
$main_file = constant("EXTENSION_DIR") . "/" . $extension->get_folder() . "/" . $extension->get_main_file();
$main_class = $extension->get_class();
if (file_exists($main_file)) {
require_once $main_file;
if (class_exists($main_class)) {
$main_class::main();
} else {
throw new BaseExtensionClassNotFoundException();
}
} else {
throw new BaseExtensionFileNotFoundException();
}
} else {
require_once "io/extension.io.php";
ExtensionIO::home();
}
}
示例2: io_handler
//.........这里部分代码省略.........
}
} else {
throw new ItemAddIOFileNotFoundException();
}
} else {
throw new ItemHandlerClassNotFoundException();
}
} else {
throw new ItemPositionIDMissingException();
}
} else {
throw new ItemParentIDMissingException();
}
} else {
throw new ItemParentTypeMissingException();
}
} else {
throw new ProjectSecurityAccessDeniedException();
}
break;
// Extension
/**
* @todo type filter
*/
// Extension
/**
* @todo type filter
*/
case "extension":
if ($_GET['extension']) {
$extension_id = Extension::get_id_by_identifier($_GET['extension']);
if ($extension_id) {
$extension = new Extension($extension_id);
$main_file = constant("EXTENSION_DIR") . "/" . $extension->get_folder() . "/" . $extension->get_main_file();
$main_class = $extension->get_class();
if (file_exists($main_file)) {
require_once $main_file;
if (class_exists($main_class)) {
$project = new Project($_GET['project_id']);
$project_item = new ProjectItem($_GET['project_id']);
$project_status_requirements = $project->get_current_status_requirements();
if (is_array($project_status_requirements) and count($project_status_requirements) >= 1) {
foreach ($project_status_requirements as $key => $value) {
if ($value['element_type'] == "extension" and $value['extension'] == $_GET['extension']) {
if (is_array($value['filter']) and count($value['filter']) >= 1) {
$filter_array = $value['filter'];
} else {
$filter_array = null;
}
break;
}
}
} else {
throw new ProjectStatusWithoutExtensionException();
}
if ($filter_array) {
$item_array = array();
foreach ($filter_array as $key => $value) {
if (is_numeric($value['status'])) {
$item_array = array_merge($item_array, $project_item->get_project_status_items($value['status'], true));
}
}
} else {
$item_array = $project_item->get_project_items(true);
}
$event_identifier = uniqid("", true);
示例3: ajax
/**
* Main Controller for requests via ajax.php
* @throws BaseModuleControllerClassNotFoundException
* @throws BaseModuleControllerFileNotFoundException
* @throws BaseExtensionClassNotFoundException
* @throws BaseExtensionFileNotFoundException
* @throws BaseExtensionNotFoundException
* @throws BaseModuleIllegalControllerCallException
*/
public static function ajax()
{
global $session;
try {
$session_valid_array = $session->is_valid();
if ($session_valid_array[0] === true) {
if ($_GET['nav']) {
$module_controller_array = SystemHandler::get_module_controller($_GET['nav']);
$module_controller_path = "core/modules/" . $module_controller_array['path'];
if (file_exists($module_controller_path)) {
require_once $module_controller_path;
if (class_exists($module_controller_array['class'])) {
$module_controller_array['class']::ajax_handler($module_controller_array['alias']);
} else {
throw new BaseModuleControllerClassNotFoundException();
}
} else {
throw new BaseModuleControllerFileNotFoundException();
}
} elseif ($_GET['extension']) {
$extension_id = Extension::get_id_by_identifier($_GET['extension']);
if (is_numeric($extension_id)) {
$extension = new Extension($extension_id);
$extension_class = $extension->get_class();
$extension_file = constant("EXTENSION_DIR") . "/" . $extension->get_folder() . "/" . $extension->get_main_file();
if (file_exists($extension_file)) {
require_once $extension_file;
if (class_exists($extension_class)) {
$extension_class::ajax();
} else {
throw new BaseExtensionClassNotFoundException();
}
} else {
throw new BaseExtensionFileNotFoundException();
}
} else {
throw new BaseExtensionNotFoundException();
}
} else {
throw new BaseModuleIllegalControllerCallException();
}
} else {
if ($_GET['nav'] == "base" and $_GET['run'] == "login" or $_GET['nav'] == "base" and $_GET['run'] == "forgot_password" or $_GET['run'] == "cron" or $_GET['nav'] == "base" and $_GET['run'] == "logout" and $session->is_dead() == true) {
require_once "core/modules/base/base.request.php";
BaseRequest::ajax_handler(null);
}
}
} catch (DatabaseQueryFailedException $e) {
echo "EXCEPTION: DatabaseQueryFailedException";
} catch (BaseException $e) {
$error_io = new Error_IO($e);
echo "EXCEPTION: " . $error_io->get_error_message();
}
}