Example #1
0
 static function getImageList()
 {
     $query = "select pid from doFields where pid like 'ap-image:%'";
     $rows = get_data_rows($query);
     $list = array();
     foreach ($rows as $row) {
         array_push($list, $row['pid']);
     }
     return $list;
 }
 static function getAllSpecimenPids()
 {
     $query = "select pid from doFields where pid like 'ap-specimen:%'";
     $rows = get_data_rows($query);
     $list = array();
     foreach ($rows as $row) {
         array_push($list, $row['pid']);
     }
     return $list;
 }