本文整理汇总了PHP中testproject::isPublic方法的典型用法代码示例。如果您正苦于以下问题:PHP testproject::isPublic方法的具体用法?PHP testproject::isPublic怎么用?PHP testproject::isPublic使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类testproject
的用法示例。
在下文中一共展示了testproject::isPublic方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: dBug
* @filesource testproject.class.test.php
* @author Francisco Mancardi
*
*
*
* @internal revisions
*
*/
require_once '../../../config.inc.php';
require_once 'common.php';
testlinkInitPage($db);
echo "<pre> testproject - constructor - testproject(&\$db)";
echo "</pre>";
$tproject_mgr = new testproject($db);
new dBug($tproject_mgr);
echo '<br>is public?' . $tproject_mgr->isPublic(3);
echo '<br>is public?' . $tproject_mgr->isPublic(1);
// create()
// function create($name,$color,$options,$notes,$active=1,$tcasePrefix='',$is_public=1)
$notes = " Created doing test ";
$color = '';
$options = new stdClass();
$options->requirement_mgmt = 1;
$options->priority_mgmt = 1;
$options->automated_execution = 1;
$active = 1;
$is_public = 1;
$namePrefix = 'TPX :: ';
$name = uniqid($namePrefix, true);
$tcasePrefix = uniqid('', false);
//$new_id = $tproject_mgr->create($name,$color,$options,$notes,$active,$tcasePrefix,$is_public);