public function __construct()
 {
     parent::__construct();
     $this->_propertyImage = new PropertyImage();
     $this->_cropper = new ImageCropper($this->_request);
     $this->_response = new Response();
 }
Example #2
0
 public function __construct()
 {
     parent::__construct();
     $this->_property = new Property();
     $this->_pageData = new stdClass();
     $this->_pageData->uri = $this->_request->getUri();
 }
Example #3
0
 public function __construct()
 {
     parent::__construct();
     $this->_user = new User();
     $this->_auth->redirectIfNotAuthenticated();
     $this->_authenticatedUser = $this->_auth->getAuthenticatedUser();
     $this->_response = new Response();
     $this->_pageData = new stdClass();
     $this->_pageData->uri = $this->_request->getUri();
 }
Example #4
0
 public function __construct()
 {
     parent::__construct();
 }
 public function __construct()
 {
     parent::__construct();
     $this->_response = new Response();
     $this->_reservation = new Reservation();
 }