27 lines
600 B
PHP
27 lines
600 B
PHP
<?php
|
|
/*****************************/
|
|
/* functions for maintainers */
|
|
/*****************************/
|
|
|
|
/*
|
|
* get the userIds of super maintainers for this appId
|
|
*/
|
|
function getSuperMaintainersUserIdsFromAppId($appId)
|
|
{
|
|
$sQuery = "SELECT userId FROM ".
|
|
"appMaintainers WHERE appId = '?' " .
|
|
"AND superMaintainer = '1';";
|
|
$hResult = query_parameters($sQuery, $appId);
|
|
$retval = array();
|
|
$c = 0;
|
|
while($oRow = mysql_fetch_object($hResult))
|
|
{
|
|
$retval[$c] = $oRow->userId;
|
|
$c++;
|
|
}
|
|
|
|
return $retval;
|
|
}
|
|
|
|
?>
|