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