Changeset 144
- Timestamp:
- 09/06/07 00:30:59 (16 months ago)
- Files:
-
- 1 modified
-
trunk/classes/HellaController.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/classes/HellaController.php
r137 r144 277 277 } 278 278 279 public function endMultiCall() { 279 public function multiCallCommit() { 280 /** 281 * Commits a multi-call transaction, sending all commands to the 282 * XML-RPC server. 283 */ 280 284 // Perform some sanity checking before proceeding 281 285 if (!$this->multiCall) { … … 317 321 } 318 322 319 public function beginMultiCall() { 323 public function multiCallCancel() { 324 /** 325 * Ends a multi call without committing any changes 326 */ 327 $this->calls = array(); 328 $this->multiCall = false; 329 } 330 331 public function multiCallStart() { 320 332 /** 321 333 * Begins a multiple call transaction
