You are here

function colorbox_node_context_condition::execute in Colorbox Node 7.3

Parameters

$op:

File

./colorbox_node.context.inc, line 21
Integrates the context module

Class

colorbox_node_context_condition
Expose the colorbox node context condition.

Code

function execute($op) {
  if ($this
    ->condition_used()) {
    foreach ($this
      ->get_contexts() as $context) {
      $this
        ->condition_met($context);
    }
  }
}