Ejemplo n.º 1
0
?>
          </td>
        </tr><tr>
          <td><?php 
echo $lang['common_project'];
?>
:&nbsp;</td>
          <td><select name="projectid" onchange="javascript:document.form1.action.value='search';document.form1.submit()">
            <?php 
$projectInst = new project();
$list = $projectInst->getList();
$projectMount = "";
while ($element = current($list)) {
    $projectInst->activate($element);
    $selected = "";
    if ($projectInst->isAvailable() || $recordType == "edit") {
        if (!$projectMount) {
            $projectMount = $element;
        }
        if ($projectInst->id == $taskInst->projectId) {
            $selected = "selected";
            $projectMount = $element;
        }
        echo "<option " . $selected . " value=\"" . $projectInst->id . "\">" . $projectInst->name . "\n";
    }
    next($list);
}
?>
          </select></td>
        </tr><tr>
          <td><?php 
Ejemplo n.º 2
0
    // create box with open tasks
    $taskInst = new task();
    $taskInst->filterStatusId = TASK_STATUS_DONE;
    $taskInst->filterInvertStatus = 1;
    $taskInst->filterUserId = $loginInst->id;
    $list = $taskInst->getList("priority", "DESC");
    $boxInst = new box();
    $boxInst->setTitle($lang['home_myOpenTasks']);
    $boxInst->setBgColor("#f8f8f8");
    if ($taskInst->matches > 0) {
        $boxInst->addContent("<table border=0 cellpadding=2 cellspacing=0 width=100%>");
        $boxInst->addContent("<tr><th>" . $lang['common_priority'] . "</th><th>" . $lang['common_type'] . "</th><th>" . $lang['common_subject'] . "</th></tr>");
        while ($element = current($list)) {
            $taskInst->activate($element);
            $projectInst = new project($taskInst->projectId);
            if ($projectInst->isAvailable()) {
                $projectInst = new project($taskInst->projectId);
                $boxInst->addContent("<tr><td valign=top class=" . $taskInst->getPriorityStyle() . ">" . $taskInst->getPriorityName() . "</td>");
                $boxInst->addContent("<td valign=top class=" . $taskInst->getTypeStyle() . ">" . $taskInst->getTypeName() . "</td>");
                $boxInst->addContent("<td class=list><a href=\"javascript:openwindow('" . $toolInst->encodeUrl("index.php?content=taskdetails.php&view=details&taskid=" . $element) . "',width='500',height='500')\" title=\"" . $lang['common_showTaskdetails'] . "\">");
                $boxInst->addContent(substr($projectInst->name . ": " . $taskInst->subject, 0, 50));
                $boxInst->addContent("...</a></td></tr>");
            }
            next($list);
        }
        $boxInst->addContent("</table>");
    } else {
        $boxInst->addContent("<b>" . $lang['home_myOpenTasksNoMatches'] . "<br>&nbsp;");
    }
    $boxInst->get();
}