コード例 #1
0
 /**
  * Constructor
  *
  * @access public
  */
 public function __construct()
 {
     parent::__construct();
     //initialize
     $this->icon = 'free.jpg';
     $this->title = lang('shipping_free_title');
     $this->description = lang('shipping_free_description');
     $this->status = isset($this->config['MODULE_SHIPPING_FREE_STATUS']) && $this->config['MODULE_SHIPPING_FREE_STATUS'] == 'TRUE' ? TRUE : FALSE;
 }
コード例 #2
0
 /**
  * Constructor
  *
  * @access public
  */
 public function __construct()
 {
     parent::__construct();
     $this->icon = 'selfpickup.jpg';
     $this->title = lang('shipping_self_pickup_title');
     $this->description = lang('shipping_self_pickup_description');
     $this->status = isset($this->config['MODULE_SHIPPING_SELF_PICKUP_STATUS']) && $this->config['MODULE_SHIPPING_SELF_PICKUP_STATUS'] == 'True' ? TRUE : FALSE;
     $this->sort_order = isset($this->config['MODULE_SHIPPING_SELF_PICKUP_SORT_ORDER']) ? $this->config['MODULE_SHIPPING_SELF_PICKUP_SORT_ORDER'] : null;
 }
コード例 #3
0
 /**
  * Constructor
  *
  * @access public
  */
 public function __construct()
 {
     parent::__construct();
     $this->icon = 'flat.jpg';
     $this->title = lang('shipping_flat_title');
     $this->description = lang('shipping_flat_description');
     $this->status = isset($this->config['MODULE_SHIPPING_FLAT_STATUS']) && $this->config['MODULE_SHIPPING_FLAT_STATUS'] == 'True' ? TRUE : FALSE;
     $this->sort_order = isset($this->config['MODULE_SHIPPING_FLAT_SORT_ORDER']) ? $this->config['MODULE_SHIPPING_FLAT_SORT_ORDER'] : null;
 }
コード例 #4
0
 /**
  * Constructor
  *
  * @access public
  */
 public function __construct()
 {
     parent::__construct();
     // $this->icon = 'table.jpg';
     $this->title = lang('shipping_table_title');
     $this->description = lang('shipping_table_description');
     $this->status = isset($this->config['MODULE_SHIPPING_TABLE_STATUS']) && $this->config['MODULE_SHIPPING_TABLE_STATUS'] == 'True' ? TRUE : FALSE;
     $this->sort_order = isset($this->config['MODULE_SHIPPING_TABLE_SORT_ORDER']) ? $this->config['MODULE_SHIPPING_TABLE_SORT_ORDER'] : NULL;
 }