|
@@ 865-867 (lines=3) @@
|
| 862 |
|
$id = $this->id; |
| 863 |
|
} |
| 864 |
|
$result = $this->store->touch($id, $timestamp); |
| 865 |
|
if ($this->store->error) { |
| 866 |
|
$this->error = ar::error( ''.$this->store->error, 1107, $this->store->error); |
| 867 |
|
} |
| 868 |
|
return $result; |
| 869 |
|
} |
| 870 |
|
|
|
@@ 882-884 (lines=3) @@
|
| 879 |
|
$vtype = substr($vtype, 0, strpos($vtype, '.')); |
| 880 |
|
} |
| 881 |
|
$result = $this->store->mogrify($id, $type, $vtype); |
| 882 |
|
if ($this->store->error) { |
| 883 |
|
$this->error = ar::error( ''.$this->store->error, 1107, $this->store->error); |
| 884 |
|
} |
| 885 |
|
return $result; |
| 886 |
|
} |
| 887 |
|
|
|
@@ 2778-2780 (lines=3) @@
|
| 2775 |
|
} |
| 2776 |
|
$result = $this->store->call($function, $args, |
| 2777 |
|
$this->store->find($this->path, $criteria, $limit, $offset)); |
| 2778 |
|
if ($this->store->error) { |
| 2779 |
|
$this->error = ar::error( ''.$this->store->error, 1107, $this->store->error ); |
| 2780 |
|
} |
| 2781 |
|
return $result; |
| 2782 |
|
} |
| 2783 |
|
|