Home
last modified time | relevance | path

Searched refs:store (Results 1 – 25 of 261) sorted by relevance

1234567891011

/plugin/swiftmail/Swift/Plugin/
H A DDecorator.php34 protected $store; variable in Swift_Plugin_Decorator
121 $this->store = array(
144 $store["headers"][$name] = array();
145 $store["headers"][$name]["value"] = $value;
153 if (!isset($store["headers"][$name]))
169 $store["body"] = $body;
174 $store["children"][$id] = array(
200 if (empty($store)) //3.3.3 bugfix
206 foreach ($store["headers"] as $name => $array)
215 if ($store["body"] !== false)
[all …]
/plugin/swiftmail/Swift/Cache/
H A DMemory.php25 protected $store = array(); variable in Swift_Cache_Memory
39 if (!isset($this->store[$key])) $this->store[$key] = $data;
40 else $this->store[$key] .= $data;
48 $this->store[$key] = null;
49 unset($this->store[$key]);
58 return array_key_exists($key, $this->store);
76 return $this->store[$key];
/plugin/captcha/
H A DIpCounter.php11 protected $store; variable in dokuwiki\\plugin\\captcha\\IpCounter
19 $this->store = getCacheName($this->ip, '.captchaip');
29 io_saveFile($this->store, '1', true);
39 return (int)@filesize($this->store);
49 @unlink($this->store);
/plugin/combo/ComboStrap/Meta/Field/
H A DPageH1.php64 $store = $this->getReadStore();
65 if ($store instanceof MetadataDokuWikiStore) {
66 $h1Parsed = $store->getFromName(self::H1_PARSED);
71 $h1 = $store->getCurrentFromName("title");
108 $store = $this->getWriteStore();
109 if ($store instanceof MetadataDokuWikiStore) {
110 $store->setFromPersistentName(self::H1_PARSED, $defaultValue);
H A DFeaturedSvgImage.php54 $store = $this->getWriteStore();
55 if ($store instanceof MetadataDokuWikiStore) {
56 $store->setFromPersistentName(self::ITEM_FEATURED_IMAGE_PARSED, $path);
H A DFeaturedRasterImage.php98 $store = $this->getWriteStore();
99 if ($store instanceof MetadataDokuWikiStore) {
100 $store->setFromPersistentName(self::FEATURED_IMAGE_PARSED, $path);
/plugin/combo/ComboStrap/Meta/Api/
H A DMetadataBoolean.php65 $store = $this->getWriteStore();
67 if ($store instanceof MetadataFormDataStore) {
91 $store = $this->getWriteStore();
98 if ($store instanceof MetadataFormDataStore) {
102 if ($store instanceof MetadataDokuWikiStore) {
103 // The store modify it
107 if ($store->isHierarchicalTextBased()) {
H A DMetadata.php214 * @param $store
218 function setReadStore($store): Metadata argument
221 LogUtility::msg("The read store was already set.");
223 if (is_string($store) && !is_subclass_of($store, MetadataStore::class)) {
224 throw new ExceptionRuntime("The store class ($store) is not a metadata store class");
226 $this->readStore = $store;
231 * @param MetadataStore|string $store
235 setWriteStore($store) global() argument
[all...]
/plugin/combo/ComboStrap/
H A DCreationDate.php48 $store = $this->getReadStore();
50 if (!($store instanceof MetadataDokuWikiStore)) {
54 $fromName = $store->getFromName(self::DATE_DOKUWIKI_PROPERTY_NAME);
71 $store = $this->getWriteStore();
72 if (!($store instanceof MetadataDokuWikiStore)) {
H A DPageType.php40 public function setWriteStore($store): PageType argument
43 return parent::setWriteStore($store);
59 public function setReadStore($store): PageType argument
62 return parent::setReadStore($store);
H A DFirstSvgIllustration.php52 $store = $this->getReadStore();
53 if (!($store instanceof MetadataDokuWikiStore)) {
64 $firstImageId = $store->getFromName(FirstSvgIllustration::PROPERTY_NAME);
H A DFirstRasterImage.php57 $store = $this->getReadStore();
58 if (!($store instanceof MetadataDokuWikiStore)) {
66 $firstImageId = $store->getFromName(FirstRasterImage::PROPERTY_NAME);
H A DModificationDate.php28 $store = $this->getReadStore();
29 if (!($store instanceof MetadataDokuWikiStore)) {
41 * Why do they store the date of the file while it's in the file system ?
43 $currentDateMeta = $store->getCurrentFromName('date');
H A DPagePublicationDate.php91 $store = $this->getReadStore();
92 if (!($store instanceof MetadataDokuWikiStore)) {
100 $value = $store->getFromName(PagePublicationDate::OLD_META_KEY);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/
H A DPosCustomBatchResponseEntry.php112 public function setStore(PosStore $store) argument
114 $this->store = $store;
121 return $this->store;
H A DPosCustomBatchRequestEntry.php122 public function setStore(PosStore $store) argument
124 $this->store = $store;
131 return $this->store;
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Cache/
H A DApcCache.php50 $store = apc_store($key, $value, $this->ttl);
52 if (!$store) {
56 return $store;
/plugin/fedauth/classes/usr/
H A Dfa_signedin.usr.class.php45 $store =& $this->getUserStore();
46 $uname = $store->getUsernameByIdentity($this->provid, $claimedId);
66 $store->refreshUserDataEntry($claimedId);
76 $store->addUserDataEntry($this->provid, $claimedId);
H A Dfa_remove.usr.class.php33 $store = $this->getUserStore();
34 if ($entry = $store->deleteUserDataEntry($uid)) {
/plugin/move/helper/
H A Dplan.php689 $store = 'pages';
691 $store = 'media';
693 $store = 'ns';
698 if(!isset($this->tmpstore[$store][$src])) {
699 $this->tmpstore[$store][$src] = $dst;
810 foreach($lists as $store => $file) {
812 $count = count($this->tmpstore[$store]);
817 … $this->tmpstore[$store] = array_reverse($this->tmpstore[$store]); // store in reverse order
829 if($store != 'ns') {
830 $this->options[$store . '_all'] = $count;
[all …]
/plugin/odt/ODT/
H A DODTFootnote.php27 $params->document->store = $params->content;
52 $params->content = $params->document->store;
53 $params->document->store = '';
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DDeduplicationHandler.php119 $store = file($this->deduplicationStore, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
120 if (!is_array($store)) {
128 for ($i = count($store) - 1; $i >= 0; $i--) {
129 list($timestamp, $level, $message) = explode(':', $store[$i], 3);
/plugin/latexit/
H A Drenderer.php45 protected $store; variable in renderer_plugin_latexit
217 if(is_null($this->store)) {
263 $this->store->addPackage($pckg);
268 $this->store->addPackage($pckg);
420 $this->store->addPackage($package);
570 $this->store->addPackage($package);
587 $this->store->addPackage($package);
605 $this->store->addPackage($package);
773 $this->store->addPackage($pckg);
1217 $this->store->addPackage($pckg);
[all …]
/plugin/semanticdata/
H A DREADME5 …rlying sqlite database has been replaced by a SPARQL 1.1 compliant triple store. This has several …
8 …adata. In this way, metadata that is automatically inferred by the triple store is included in the…
13 Prequisites: Sesame 2.6.0 triple store. http://www.openrdf.org
15 Please follow the instructions at http://www.openrdf.org for installing the triple store. You have…
/plugin/semanticdata/syntax/
H A Dentry.php169 $store = $this->dthlp->_getTripleStore();
174 if(!$store) return false;
184 $result = $store->update($sparql, $resultFormat, $lang, $infer);
193 $result = $store->update($sparql, $resultFormat, $lang, $infer);
204 $result = $store->update($sparql, $resultFormat, $lang, $infer);
210 $result = $store->update($sparql, $resultFormat, $lang, $infer);

1234567891011