Ejemplo n.º 1
0
 public function __construct($registry)
 {
     parent::__construct($registry);
     $this->takeSessionVariables();
     $this->load->library("Messaging");
     $this->load->library("Status");
 }
Ejemplo n.º 2
0
 public function __construct($registry)
 {
     parent::__construct($registry);
     $this->language->load('account/edit');
     $this->document->setTitle($this->language->get('headingTitle'));
     $this->modelAccountCustomer = $this->load->model('account/customer');
     $this->modelLocalisationCurrency = $this->load->model('localisation/currency');
 }
Ejemplo n.º 3
0
 public function __construct($registry)
 {
     parent::__construct($registry);
     $this->load->library('Status');
     $this->language->load('account/order');
     $this->document->setTitle($this->language->get('heading_title'));
     $this->data['heading_title'] = $this->language->get('heading_title');
 }
Ejemplo n.º 4
0
 public function __construct($registry)
 {
     parent::__construct($registry);
     $this->language->load('account/repurchaseOrders');
     $this->document->setTitle($this->language->get('HEADING_TITLE'));
     $this->data['headingTitle'] = $this->language->get('HEADING_TITLE');
     $this->load->library('Status');
 }
Ejemplo n.º 5
0
 public function __construct($registry)
 {
     parent::__construct($registry);
     $this->language->load('account/transaction');
     // ----- deposit modules START -----
     @$this->language->load('account/multi_pay');
     // ----- deposit modules END -----
     $this->load->model('account/transaction');
     $this->document->setTitle($this->language->get('headingTitle'));
     $this->data['heading_title'] = $this->language->get('headingTitle');
 }
Ejemplo n.º 6
0
 public function __construct($registry)
 {
     parent::__construct($registry);
     $this->route = 'account/orderItems';
     $this->load->language($this->route);
     $this->document->setTitle($this->language->get('HEADING_TITLE'));
     $this->load->model('catalog/product');
     $this->load->library('Status');
     $this->orderModel = $this->load->model('account/order');
     //        $this->load->model('account/order_item_history');
     $this->load->model('tool/image');
 }
Ejemplo n.º 7
0
 public function __construct($registry)
 {
     parent::__construct($registry);
     $this->load->language('account/invoice');
     $this->load->library('Transaction');
     $this->load->model('reference/address');
     $this->load->model('account/order');
     $this->load->model('tool/image');
     $this->data['notifications'] = array();
     $this->document->setTitle($this->language->get('headingTitle'));
     $this->data['headingTitle'] = $this->language->get('headingTitle');
 }
Ejemplo n.º 8
0
 public function __construct($registry)
 {
     parent::__construct($registry);
     $this->takeSessionVariables();
 }
Ejemplo n.º 9
0
 public function __construct($registry)
 {
     parent::__construct($registry);
     $this->load->language('account/addCredit');
     $this->takeSessionVariables();
 }
Ejemplo n.º 10
0
 public function __construct($registry)
 {
     parent::__construct($registry);
 }