Home
last modified time | relevance | path

Searched refs:sectionName (Results 1 – 5 of 5) sorted by relevance

/plugin/refnotes/
H A Dconfig.php26 $sectionName = self::$setting[$name][0];
29 if (!array_key_exists($sectionName, self::$section)) {
30 self::$section[$sectionName] = self::load($sectionName);
33 if (array_key_exists($name, self::$section[$sectionName])) {
34 $result = self::$section[$sectionName][$name];
44 public static function load($sectionName) { argument
45 $fileName = DOKU_CONF . 'refnotes.' . $sectionName . '.local.dat';
50 $fileName = $pluginRoot . $sectionName . '.local.dat';
52 $fileName = $pluginRoot . 'conf/' . $sectionName
72 save($sectionName, $config) global() argument
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/
H A DProductProductDetail.php33 public $sectionName; variable in Google\\Service\\ShoppingContent\\ProductProductDetail
66 public function setSectionName($sectionName) argument
68 $this->sectionName = $sectionName;
75 return $this->sectionName;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ManufacturerCenter/
H A DProductDetail.php33 public $sectionName; variable in Google\\Service\\ManufacturerCenter\\ProductDetail
66 public function setSectionName($sectionName) argument
68 $this->sectionName = $sectionName;
75 return $this->sectionName;
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DTemplate.php229 $sectionName = $current[Tokenizer::NAME];
230 if ($helpers->has($sectionName)) {
247 $return = call_user_func_array($helpers->$sectionName, $params);
257 $sectionVar = $context->get($sectionName, true);
260 $sectionName . ' is not registered as a helper'
284 $sectionName . ' is not registered as a helper'
299 $sectionName = $current[Tokenizer::NAME];
300 $data = $context->get($sectionName);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Extensions/
H A DPhptTestCase.php103 foreach ($assertions as $sectionName => $sectionAssertion) {
104 if (isset($sections[$sectionName])) {
105 $sectionContent = preg_replace('/\r\n/', "\n", trim($sections[$sectionName]));
107 … $expected = $sectionName == 'EXPECTREGEX' ? "/{$sectionContent}/" : $sectionContent;