当前位置: 首页>>代码示例>>PHP>>正文


PHP CProject::getOwners方法代码示例

本文整理汇总了PHP中CProject::getOwners方法的典型用法代码示例。如果您正苦于以下问题:PHP CProject::getOwners方法的具体用法?PHP CProject::getOwners怎么用?PHP CProject::getOwners使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CProject的用法示例。


在下文中一共展示了CProject::getOwners方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: arraySelect

$currentTabName = $project_statuses[$currentTabId];
echo '<strong>' . $AppUI->_('Status') . ' (' . $AppUI->_('Records') . '): ' . $currentTabName . '<strong>';
?>
					</td>
	      </tr>
			</table>
		</td>
	</tr>
	<tr>
		<td style="border: outset #d1d1cd 1px;" colspan="3">  
			<table border="0" cellpadding="0" cellspacing="0" width="100%" class="prjprint">	
	            <tr>
	            	<td align="center"  colspan="2">
		            	<?php 
$txt = '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;' . $AppUI->_('Search') . ':&nbsp;' . '<input type="text" disabled class="text" SIZE="20" name="projsearchtext" onChange="document.searchfilter.submit();" value=' . "'{$search_text}'" . 'title="' . $AppUI->_('Search in name and description fields') . '"/>&nbsp;';
$txt .= $AppUI->_('Type') . ':&nbsp;' . arraySelect($project_types, 'project_type', 'size="1" disabled class="text"', $project_type, false);
$user_list = array(0 => '(all)') + CProject::getOwners();
$txt .= $AppUI->_('Owner') . ':&nbsp;' . arraySelect($user_list, 'project_owner', 'size="1" disabled class="text"', $owner, false);
$txt .= $AppUI->_('Company') . ':&nbsp;' . str_replace('<select', '<select disabled="disabled"', $buffer);
echo $txt;
?>
  
	            	</td>
	      	</tr>
	      	</table>
		</td>
	</tr>
	<?php 
require W2P_BASE_DIR . '/modules/projects/vw_projects.php';
?>
</table>
开发者ID:viniciusbudines,项目名称:sisnuss,代码行数:31,代码来源:printprojects.php

示例2: CCompany

    if ($AppUI->getState('ProjIdxOrderDir') == 'asc') {
        $orderdir = 'desc';
    } else {
        $orderdir = 'asc';
    }
}
$AppUI->setState('ProjIdxOrderDir', $orderdir);
// collect the full projects list data via function in projects.class.php
$search_text = $search_string;
// @note this is only because the projects_list_data function takes a bunch of globals
//$projects = projects_list_data();
$oCompany = new CCompany();
$allowedCompanies[-1] = $AppUI->_('all');
$allowedCompanies += $oCompany->getAllowedRecords($AppUI->user_id, 'company_id,company_name', 'company_name');
$project_types = array(-1 => '(' . $AppUI->_('all') . ')') + w2PgetSysVal('ProjectType');
$user_list = array(0 => '(' . $AppUI->_('all') . ')') + CProject::getOwners();
// setup the title block
$titleBlock = new w2p_Theme_TitleBlock('Projects', 'icon.png', $m);
//$titleBlock->addSearchCell($search_string);
$titleBlock->addFilterCell('Type', 'project_type', $project_types, $project_type);
$titleBlock->addFilterCell('Company', 'project_company', $allowedCompanies, $company_id);
$titleBlock->addFilterCell('Owner', 'project_owner', $user_list, $owner);
if ($canCreate) {
    $titleBlock->addButton('new project', '?m=projects&a=addedit');
}
$titleBlock->addCell('<span title="' . $AppUI->_('Projects') . '::' . $AppUI->_('Print projects list') . '.">' . '<a href="javascript: void(0);" onclick ="window.open(\'index.php?m=projects&a=printprojects&dialog=1&suppressHeaders=1&company_id=' . $company_id . '&project_type=' . $project_type . '&project_owner=' . $owner . '\', \'printprojects\',\'width=1200, height=600, menubar=1, scrollbars=1\')">
		<img src="' . w2PfindImage('printer.png') . '" />
		</a></span>');
$titleBlock->show();
$project_statuses = array();
$project_statuses = w2PgetSysVal('ProjectStatus');
开发者ID:victorrod,项目名称:web2project,代码行数:31,代码来源:index.php

示例3: testGetOwners

 /**
  * Tests getting a list of project owners.
  */
 public function testGetOwners()
 {
     $owners = CProject::getOwners();
     $this->assertEquals(1, count($owners));
     $this->assertEquals('Admin Person', $owners[1]);
 }
开发者ID:eureka2,项目名称:web2project,代码行数:9,代码来源:projects.test.php


注:本文中的CProject::getOwners方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。