Home
last modified time | relevance | path

Searched refs:config (Results 901 – 908 of 908) sorted by path

1...<<31323334353637

/plugin/zotero/
H A DREADME.md12 2. Enter your Zotero username, key, and user ID into `config.ini`.
14 into `config.ini` (e.g. `zotero:sources`).
20 cache. For this to work you have to set `autoupdating` in `config.ini` to `1`.
H A DTextZoteroRepository.php15 private $config; variable in TextZoteroRepository
17 public function __construct($fileName, ZoteroConfig $config) argument
20 $this->config = $config;
119 $entryUrl = $this->config->getUrlForEntry($e);
H A DWebZoteroFeedReader.php9 private $config; variable in WebZoteroFeedReader
11 public function __construct(ZoteroConfig $config) argument
13 $this->config = $config;
23 curl_setopt($ch, CURLOPT_URL, $this->config->getUrlForEntries());
H A DZoteroConfig.php11 protected $config = array(); variable in ZoteroConfig
25 …if (!isset($this->config['WikiOutput']['parentheses']) || $this->config['WikiOutput']['parentheses…
27 $this->config['WikiOutput']['parentheses'] = ",";
30 …if (!isset($this->config['SourceEntries']['authorFormat']) || $this->config['SourceEntries']['auth…
34 …if (!isset($this->config['WikiOutput']['titleFormat']) || $this->config['WikiOutput']['titleFormat…
36 $this->config['WikiOutput']['titleFormat'] = "AUTHOR: TITLE (DATE)";
42 …return isset($this->config['ZoteroAccess']['username']) && $this->config['ZoteroAccess']['username…
47 …return isset($this->config['ZoteroAccess']['key']) && $this->config['ZoteroAccess']['key'] != "" &…
52 …return isset($this->config['ZoteroAccess']['autoupdate']) && $this->config['ZoteroAccess']['autoup…
57 $value = @$this->config[$category][$key];
[all …]
H A DimportAllEntries.php12 $config = new IniConfig(); variable
14 $cachePage = $config->getCachePage();
15 $textRepo = new TextZoteroRepository($cachePage, $config);
17 $feedReader = new ImportZoteroFeedReader($config);
18 $webRepo = new FeedZoteroRepository($feedReader, $config);
H A Dsyntax.php37 private $config = null; variable in syntax_plugin_zotero
167 …return '<a href="' . $this->config->getUrlForEntry($entry) . '" title="' . htmlentities($entry->ge…
/plugin/zotero/tests/
H A DFeedZoteroRepositoryTest.php12 $config = new StubZoteroConfig();
13 $config->setConfig("SourceEntries", "authorFormat", "FIRSTNAME LASTNAME");
14 $this->r = new FeedZoteroRepository($feedReader, $config);
H A DStubZoteroConfig.php11 $this->config[$category][$key] = $value;

1...<<31323334353637