Home
last modified time | relevance | path

Searched refs:config (Results 101 – 125 of 908) sorted by relevance

12345678910>>...37

/plugin/txtconf/
H A Dtxtconfig.class.php43 if (isset($config['intro'])) $this->_intro = $config['intro'];
45 if (isset($config['varname'])) $this->_name = $config['varname'];
46 if (isset($config['format'])) $this->_format = $config['format'];
47 if (isset($config['heading'])) $this->_heading = $config['heading'];
153 $config = array();
173 $config[$key] = $value;
180 $config = confToHash($file);
183 return $config;
/plugin/authfacebook/lib/
H A DFacebook.php121 * @param array $config
125 public function __construct(array $config = []) argument
127 $config = array_merge([
136 ], $config);
138 if (!$config['app_id']) {
141 if (!$config['app_secret']) {
145 $this->app = new FacebookApp($config['app_id'], $config['app_secret']);
148 $config['enable_beta_mode']
151 $config['pseudo_random_string_generator']
155 $config['persistent_data_handler']
[all …]
/plugin/confmanager/configTypes/
H A DConfigManagerAbstractCascadeConfig.php41 $config = [];
44 $config[$type] = [];
51 $config[$type] = array_merge($config[$type], $this->loadFile($file));
55 return $config;
/plugin/achart/assets/
H A Dapexcharts.min.js6config.chart.animations.easing){case"linear":t="-";break;case"easein":t="<";break;case"easeout":t=…
14config=new R({}),this.ctx.data=new O(this.ctx),this.ctx.grid=new _(this.ctx),this.ctx.graphics=new…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Transcoder/
H A DJobTemplate.php32 public function setConfig(JobConfig $config) argument
34 $this->config = $config;
41 return $this->config;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/
H A DGoogleCloudDialogflowCxV3beta1AudioInput.php46 public function setConfig(GoogleCloudDialogflowCxV3beta1InputAudioConfig $config) argument
48 $this->config = $config;
55 return $this->config;
H A DGoogleCloudDialogflowCxV3AudioInput.php46 public function setConfig(GoogleCloudDialogflowCxV3InputAudioConfig $config) argument
48 $this->config = $config;
55 return $this->config;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DLP/
H A DGooglePrivacyDlpV2UpdateStoredInfoTypeRequest.php32 public function setConfig(GooglePrivacyDlpV2StoredInfoTypeConfig $config) argument
34 $this->config = $config;
41 return $this->config;
H A DGooglePrivacyDlpV2CreateStoredInfoTypeRequest.php36 public function setConfig(GooglePrivacyDlpV2StoredInfoTypeConfig $config) argument
38 $this->config = $config;
45 return $this->config;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudHealthcare/
H A DDeidentifyDatasetRequest.php32 public function setConfig(DeidentifyConfig $config) argument
34 $this->config = $config;
41 return $this->config;
/plugin/struct/meta/
H A DSchema.php47 /** @var array config array with label translations */
48 protected $config = []; variable in dokuwiki\\plugin\\struct\\meta\\Schema
88 $config = [];
95 $config = json_decode($result['config'], true, 512, JSON_THROW_ON_ERROR);
97 $this->config = array_merge($baseconfig, $config);
123 $config = json_decode($row['config'], true, 512, JSON_THROW_ON_ERROR);
125 $type = new $class($config,
[all...]
H A DSearchConfigParameters.php204 updateConfig($config) global() argument
/plugin/odt/renderer/
H A Dpage.php27 protected $config = null; variable in renderer_plugin_odt_page
39 $this->config = plugin_load('helper', 'odt_config');
50 $this->config->setParam($name, $value);
59 return $this->config->isParam($string);
108 switch ($this->config->getParam('css_usage')) {
156 $mode = $this->config->load($warning);
291 $this->config->refresh();
330 $this->config->setParam ('disable_links', false);
338 $this->config->setParam ('disable_links', true);
2227 if (is_dir($this->config->getParam('tmpdir'))) {
[all …]
/plugin/slacknotifier/helper/
H A DFormatter.php10 private $config; argument
12 public function __construct(Config $config)
14 $this->config = $config;
41 if ($event->summary && $this->config->show_summary) {
8 private $config; global() variable in dokuwiki\\plugin\\slacknotifier\\helper\\Formatter
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Speech/
H A DRecognizeRequest.php44 public function setConfig(RecognitionConfig $config) argument
46 $this->config = $config;
53 return $this->config;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DeploymentManager/
H A DTargetConfiguration.php31 public function setConfig(ConfigFile $config) argument
33 $this->config = $config;
40 return $this->config;
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/Event/
H A DGatherFootnotesListener.php29 private ConfigurationInterface $config; variable in League\\CommonMark\\Extension\\Footnote\\Event\\GatherFootnotesListener
51 $key = '#' . $this->config->get('footnote/footnote_id_prefix') . $node->getReference()->getDestination();
96 '#' . $this->config->get('footnote/ref_id_prefix') . $backref->getLabel(), argument
104 $this->config = $configuration;
/plugin/confmanager/
H A Dhelper.php32 foreach ($this->getConfigFiles() as $config) {
33 if ($this->getConfigId($config) === $id) {
34 return $config;
43 * @param ConfigManagerConfigType $config
46 public function getConfigId(ConfigManagerConfigType $config) { argument
48 $paths = $config->getPaths();
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/Parser/
H A DFootnoteRefParser.php27 private ConfigurationInterface $config; variable in League\\CommonMark\\Extension\\Footnote\\Parser\\FootnoteRefParser
48 '#' . $this->config->get('footnote/footnote_id_prefix') . $label,
55 $this->config = $configuration;
68 setConfiguration(ConfigurationInterface $config) global() argument
/plugin/struct/types/
H A DDate.php9 protected $config = [ variable in dokuwiki\\plugin\\struct\\types\\Date
28 $out = date_format($date, $this->config['format']);
48 if ($this->config['prefilltoday'] && !$rawvalue) {
82 if ($this->config['pastonly'] && strtotime($rawvalue) > time()) {
85 if ($this->config['futureonly'] && strtotime($rawvalue) < time()) {
/plugin/vbsso/vendor/com.extremeidea.vbsso/vbsso-connect-shared/
H A Dvbsso_shared.php215 static $config = array();
217 if (!isset($config[$platform]) || $config[$platform] === NULL) {
220 $config[$platform] = array(
231 $config[$platform] = array_merge($config[$platform], $cfg);
236 $config[$platform] = array_merge($config[$platform], $custom_config);
240 return $config[$platform];
250 $config = $config_platform[$platform];
251 return isset($config[$property]) ? $config[$property] : $default;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dataproc/
H A DManagedCluster.php50 public function setConfig(ClusterConfig $config) argument
52 $this->config = $config;
59 return $this->config;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudMachineLearningEngine/
H A DGoogleCloudMlV1GetConfigResponse.php36 public function setConfig(GoogleCloudMlV1Config $config) argument
38 $this->config = $config;
45 return $this->config;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Contactcenterinsights/
H A DGoogleCloudContactcenterinsightsV1PhraseMatchRule.php36 public function setConfig(GoogleCloudContactcenterinsightsV1PhraseMatchRuleConfig $config) argument
38 $this->config = $config;
45 return $this->config;
/plugin/ckgdoku/ckeditor/plugins/smiley/dialogs/
H A Dsmiley.js.unc7 var config = editor.config,
9 images = config.smiley_images,
10 columns = config.smiley_columns || 8,
142 if(config.dokuSmileyConfImages) {
143 dwimages = config.dokuSmileyConfImages;
145 else dwimages = config.dokuSmileyImages;
174 dwimages = config.dokuFixmeSmiley;
175 setBigSmileys(config.dokuFixmeSmiley,1);
176 if(config.dokuLargeSmiley) {
177 setBigSmileys(config.dokuLargeSmiley,2);
[all …]

12345678910>>...37