@@ 3191-3195 (lines=5) @@ | ||
3188 | ||
3189 | $params = self::implode_r($params); |
|
3190 | ||
3191 | if ($mapped) { |
|
3192 | $output = '$this->arrayMap(\'' . $func . '\', array(' . $params . '))'; |
|
3193 | } else { |
|
3194 | $output = $func . '(' . $params . ')'; |
|
3195 | } |
|
3196 | } elseif ($pluginType & Core::PROXY_PLUGIN) { |
|
3197 | $params = $this->mapParams($params, $this->getCore()->getPluginProxy()->getCallback($func), $state); |
|
3198 | foreach ($params as &$p) { |
|
@@ 3275-3279 (lines=5) @@ | ||
3272 | array_unshift($params, '$this'); |
|
3273 | ||
3274 | $params = self::implode_r($params); |
|
3275 | if ($mapped) { |
|
3276 | $output = '$this->arrayMap(\'' . $pluginName . '\', array(' . $params . '))'; |
|
3277 | } else { |
|
3278 | $output = $pluginName . '(' . $params . ')'; |
|
3279 | } |
|
3280 | } |
|
3281 | } else { |
|
3282 | if ($pluginType & Core::COMPILABLE_PLUGIN) { |