本文整理汇总了PHP中project::Load方法的典型用法代码示例。如果您正苦于以下问题:PHP project::Load方法的具体用法?PHP project::Load怎么用?PHP project::Load使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类project
的用法示例。
在下文中一共展示了project::Load方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: GetCollection
public static function GetCollection($projectRequest)
{
$projectData = new projectData();
$resultSet = $projectData->GetCollection($projectRequest);
$projectCollection = array();
while ($dataRowAsArray = $resultSet->fetch_assoc()) {
$project = new project($projectRequest);
$project->Load($dataRowAsArray);
$projectCollection[] = $project;
}
return $projectCollection;
}
示例2: intval
<?php
$include_header_footer = intval(get_request_variable('ajax-request', 0)) === 1 ? false : true;
$item_id = intval(get_request_variable('id', 0));
$type = get_request_variable('type', '');
$db = db_class::get_instance();
$legend_title = 'Файлы';
$enable = false;
if ($item_id > 0 && $type == 'project') {
$legend_title = 'Файлы проекта';
$project = new project();
$project->id_project = $item_id;
if ($project->Load() && $project->CheckActionEnable($STORAGE, 'file')) {
$enable = true;
}
$obj2attach =& $project;
}
if ($item_id > 0 && $type == 'stage') {
$legend_title = 'Файлы этапа';
$stage = new stage();
$stage->id_stage = $item_id;
if ($stage->Load() && $stage->CheckActionEnable($STORAGE, 'file')) {
$enable = true;
}
$obj2attach =& $stage;
}
if ($item_id > 0 && $type == 'task') {
$legend_title = 'Файлы задачи';
$task = new task();
$task->id_task = $item_id;
if ($task->Load() && $task->CheckActionEnable($STORAGE, 'file')) {