Example #1
0
 public function __construct($testCase, $redirect = true)
 {
     $this->redirectUrl = self::URL;
     parent::__construct($testCase, $redirect);
 }
Example #2
0
File: Tasks.php Project: CopeX/crm
 /**
  * @param array $entityData
  *
  * @return Task
  */
 public function open($entityData = array())
 {
     $page = parent::open($entityData);
     return new Task($page->test);
 }
Example #3
0
 /**
  * @param array $entityData
  * @return ContactRequest
  */
 public function open($entityData = array())
 {
     $page = parent::open($entityData);
     return new ContactRequest($page->test);
 }
Example #4
0
 public function open($entityData = array())
 {
     $page = parent::open($entityData);
     return new B2BCustomer($page->test);
 }
Example #5
0
 public function delete($entityData, $actionName = 'Remove', $confirmation = true)
 {
     return parent::delete($entityData, $actionName, $confirmation);
 }