class cmd_condition in Context Mobile Detect 7.2
Same name and namespace in other branches
- 7 plugins/context_mobile_detect_condition.inc \cmd_condition
Main context class to detect user's device.
Hierarchy
- class \context_condition
- class \cmd_condition
Expanded class hierarchy of cmd_condition
2 string references to 'cmd_condition'
- context_mobile_detect_context_plugins in ./
context_mobile_detect.module - Implements hook_context_plugins().
- context_mobile_detect_context_registry in ./
context_mobile_detect.module - Implements hook_context_registry().
File
- plugins/
context_mobile_detect_condition.inc, line 11 - The file, which controls Mobile Device plugin.
View source
class cmd_condition extends context_condition {
function condition_values() {
return array(
1 => t('Mobile Device'),
2 => t('Tablet Device'),
3 => t('Desktop Device'),
);
}
function execute() {
$data = _context_mobile_detect_detect(FALSE);
foreach ($this
->get_contexts($data['device']) as $context) {
$this
->condition_met($context, $data['device']);
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
cmd_condition:: |
function |
Condition values. Overrides context_condition:: |
||
cmd_condition:: |
function | |||
context_condition:: |
property | |||
context_condition:: |
property | |||
context_condition:: |
property | |||
context_condition:: |
property | |||
context_condition:: |
function | Condition form. | 3 | |
context_condition:: |
function | Condition form submit handler. | 2 | |
context_condition:: |
function | Marks a context as having met this particular condition. | ||
context_condition:: |
function | Check whether this condition is used by any contexts. Can be used to prevent expensive condition checks from being triggered when no contexts use this condition. | ||
context_condition:: |
function | Context editor form for conditions. | 2 | |
context_condition:: |
function | Context editor form submit handler. | ||
context_condition:: |
function | Retrieve options from the context provided. | ||
context_condition:: |
function | Retrieve all contexts with the condition value provided. | 2 | |
context_condition:: |
function | Options form. Provide additional options for your condition. | 4 | |
context_condition:: |
function | Options form submit handler. | ||
context_condition:: |
function | Settings form. Provide variable settings for your condition. | ||
context_condition:: |
function | Clone our references when we're being cloned. | ||
context_condition:: |
function | Constructor. Do not override. |