예제 #1
0
 /**
  * Tests updating a projects status
  *
  * @expectedException PHPUnit_Framework_Error
  */
 public function testUpdateStatus()
 {
     CProject::updateStatus(null, 1, 2);
     $xml_dataset = $this->createXMLDataSet($this->getDataSetPath() . 'projectsTestUpdateStatus.xml');
     $this->assertTablesEqual($xml_dataset->getTable('projects'), $this->getConnection()->createDataSet()->getTable('projects'));
 }
예제 #2
0
파일: index.php 프로젝트: joly/web2project
<?php

/* $Id$ $URL$ */
if (!defined('W2P_BASE_DIR')) {
    die('You should not access this file directly.');
}
$AppUI->savePlace();
$structprojs = getProjects();
// Let's update project status!
if (isset($_GET['update_project_status']) && isset($_GET['project_status']) && isset($_GET['project_id'])) {
    $projects_id = w2PgetParam($_GET, 'project_id', array());
    // This must be an array
    $statusId = w2PgetParam($_GET, 'project_status', 0);
    foreach ($projects_id as $project_id) {
        CProject::updateStatus($AppUI, $project_id, $statusId);
    }
}
if (isset($_POST['projsearchtext'])) {
    $AppUI->setState('projsearchtext', w2PformSafe($_POST['projsearchtext'], true));
}
$search_text = $AppUI->getState('projsearchtext') !== null ? $AppUI->getState('projsearchtext') : '';
$projectDesigner = $AppUI->getState('ProjIdxProjectDesigner') !== null ? $AppUI->getState('ProjIdxProjectDesigner') : 0;
$tab = $AppUI->processIntState('ProjIdxTab', $_GET, 'tab', 1);
$currentTabId = $tab;
$active = intval(!$AppUI->getState('ProjIdxTab'));
$oCompany = new CCompany();
$allowedCompanies = $oCompany->getAllowedRecords($AppUI->user_id, 'company_id,company_name');
if (isset($_POST['company_id'])) {
    $AppUI->setState('ProjIdxCompany', intval($_POST['company_id']));
}
$company_id = $AppUI->getState('ProjIdxCompany') !== null ? $AppUI->getState('ProjIdxCompany') : (isset($allowedCompanies[$AppUI->user_company]) ? $AppUI->user_company : 0);