// more descriptive labels in dashactivity
This commit is contained in:
@@ -353,7 +353,7 @@ class Dashactivity extends Module
|
||||
|
||||
$fields_form['form']['input'][] = array(
|
||||
'label' => $this->l('Cart active'),
|
||||
'desc' => $this->l('Default time range to consider a Shopping cart as active (default 30, max 120)'),
|
||||
'desc' => $this->l('How long (in minutes) a cart is to be considered active after the last recorded change.'),
|
||||
'name' => 'DASHACTIVITY_CART_ACTIVE',
|
||||
'type' => 'select',
|
||||
'options' => array(
|
||||
@@ -371,7 +371,7 @@ class Dashactivity extends Module
|
||||
);
|
||||
$fields_form['form']['input'][] = array(
|
||||
'label' => $this->l('Visitor online'),
|
||||
'desc' => $this->l('Default time range to consider a Visitor as online (default 30, max 120)'),
|
||||
'desc' => $this->l('How long (in minutes) a visitor is to be considered online after their last action (default: 30 min).'),
|
||||
'name' => 'DASHACTIVITY_VISITOR_ONLINE',
|
||||
'type' => 'select',
|
||||
'options' => array(
|
||||
@@ -389,14 +389,14 @@ class Dashactivity extends Module
|
||||
);
|
||||
$fields_form['form']['input'][] = array(
|
||||
'label' => $this->l('Cart abandoned (min)'),
|
||||
'desc' => $this->l('Default time range (min) to consider a Shopping cart as abandoned (default 24hrs)'),
|
||||
'desc' => $this->l('How long (in hours) after the last action a cart is to be considered as abandoned (default: 24 hrs).'),
|
||||
'name' => 'DASHACTIVITY_CART_ABANDONED_MIN',
|
||||
'type' => 'text',
|
||||
'suffix' => $this->l('hrs'),
|
||||
);
|
||||
$fields_form['form']['input'][] = array(
|
||||
'label' => $this->l('Cart abandoned (max)'),
|
||||
'desc' => $this->l('Default time range (max) to consider a Shopping cart as abandoned (default 48hrs)'),
|
||||
'desc' => $this->l('How long (in hours) after the last action a cart is no longer to be considered as abandoned (default: 24 hrs).'),
|
||||
'name' => 'DASHACTIVITY_CART_ABANDONED_MAX',
|
||||
'type' => 'text',
|
||||
'suffix' => $this->l('hrs'),
|
||||
|
||||
Reference in New Issue
Block a user