Changeset 96208 in spip-zone
- Timestamp:
- Mar 26, 2016, 5:11:09 PM (5 years ago)
- Location:
- _plugins_/facteur/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/facteur/trunk/classes/facteur.php
r96013 r96208 396 396 public function Send() { 397 397 $args = func_get_args(); 398 return $this->callWrapper( "parent::Send",$args);398 return $this->callWrapper(array('parent','Send'),$args); 399 399 } 400 400 public function addAttachment($path, $name = '', $encoding = 'base64', $type = '', $disposition = 'attachment') { 401 401 $args = func_get_args(); 402 return $this->callWrapper( "parent::AddAttachment",$args);402 return $this->callWrapper(array('parent','AddAttachment'),$args); 403 403 } 404 404 public function AddReplyTo($address, $name = '') { 405 405 $args = func_get_args(); 406 return $this->callWrapper( "parent::AddReplyTo",$args);406 return $this->callWrapper(array('parent','AddReplyTo'),$args); 407 407 } 408 408 public function AddBCC($address, $name = '') { 409 409 $args = func_get_args(); 410 return $this->callWrapper( "parent::AddBCC",$args);410 return $this->callWrapper(array('parent','AddBCC'),$args); 411 411 } 412 412 public function AddCC($address, $name = '') { 413 413 $args = func_get_args(); 414 return $this->callWrapper( "parent::AddCC",$args);414 return $this->callWrapper(array('parent','AddCC'),$args); 415 415 } 416 416 } -
_plugins_/facteur/trunk/paquet.xml
r95619 r96208 2 2 prefix="facteur" 3 3 categorie="communication" 4 version="3.3. 3"4 version="3.3.4" 5 5 etat="stable" 6 6 compatibilite="[3.0.0;3.1.*]"
Note: See TracChangeset
for help on using the changeset viewer.