You are here

function ctools_context::get_original_argument in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 includes/context.inc \ctools_context::get_original_argument()

File

includes/context.inc, line 65
Contains code related to the ctools system of 'context'.

Class

ctools_context
The context object is largely a wrapper around some other object, with an interface to finding out what is contained and getting to both the object and information about the object.

Code

function get_original_argument() {
  if (!is_null($this->original_argument)) {
    return $this->original_argument;
  }
  return $this->argument;
}