Horde_Core_Ajax_Response_HordeCore::__construct PHP Method

__construct() public method

Constructor.
public __construct ( mixed $data = null, mixed $tasks = null )
$data mixed Response data to send to browser.
$tasks mixed Task data to send to browser.
    public function __construct($data = null, $tasks = null)
    {
        parent::__construct($data);
        $this->tasks = $tasks;
    }

Usage Example

コード例 #1
0
ファイル: Reload.php プロジェクト: horde/horde
 /**
  * Constructor.
  *
  * @param mixed $data  Response data to send to browser. For this class,
  *                     this can be the URL to redirect to. If null, will
  *                     reload the current URL of the browser.
  */
 public function __construct($data = null)
 {
     parent::__construct($data);
 }
Horde_Core_Ajax_Response_HordeCore