You are here

function mobile_tools_context_condition_mobile::execute in Mobile Tools 6.3

Same name and namespace in other branches
  1. 6.2 plugins/mobile_tools_context_condition_mobile.inc \mobile_tools_context_condition_mobile::execute()
  2. 7.2 mobile_tools_context/mobile_tools_context.condition_mobile.inc \mobile_tools_context_condition_mobile::execute()

File

plugins/mobile_tools_context_condition_mobile.inc, line 11
Integration with the Context module

Class

mobile_tools_context_condition_mobile
@file Integration with the Context module

Code

function execute($value) {
  foreach ($this
    ->get_contexts($value) as $context) {
    $this
      ->condition_met($context, $value);
  }
}