Lines Matching refs:p_id

245 * @param    number     $p_id the id of the table
249 function get_folder($p_id) { argument
251 if ($p_id<10 ) $id='0'.$p_id;
252 else $id = $p_id;
254 $ret .= $id."-".$this->tableNames[$p_id]."/";
544 * @param number $p_id id of the column
553 function Column ($p_id, $p_name, $p_label, $p_mandatory, $p_unique, $p_type, $p_visible) { argument
559 $this->id = $p_id;
922 $p_id = $p_idOrName;
923 $this->displayId = $p_id;
924 $this->id= abs($p_id);
931 $this->name = $environment->tableNames[abs($p_id)];
932 if ($p_id<0) {
1005 function hasChanged($p_id, $p_originals) { argument
1012 $currentRecord =$this->get($p_id);
1254 * @param number $p_id the record id
1258 function get($p_id) { argument
1260 $display->debug_output("Getting record with id=".$p_id." from table ".$this->name);
1261 return $this->recordObjs[$p_id];
1281 * @param number $p_id the id of the record to be updated
1286 function update($p_id,$p_values) { argument
1288 $display->debug_output("table:update : record ".$p_id." in table ".$this->name);
1290 $dataFile->update($p_id, $p_values);
1295 * @param number $p_id the id of the record to be deleted
1299 function delete ($p_id) { argument
1301 $dataFile->delete($p_id);
1551 * @param number $p_id ID of the record to be deleted
1555 function delete ($p_id) { argument
1562 for ($counter=1;$counter<$p_id;$counter++)
1567 for ($counter=$p_id+1;$counter<=count($this->rowObjs);$counter++)
1575 * @param number $p_id ID of the record to be deleted from the file
1580 function update ($p_id, $p_values) { argument
1584 $display->debug_output( "file:update updating rec ".$p_id."in ".$this->name);
1591 for ($counter=1;$counter<$p_id;$counter++)
1603 for ($counter=$p_id+1;$counter<=count($this->rowObjs);$counter++)