Home
last modified time | relevance | path

Searched refs:handle (Results 151 – 175 of 1645) sorted by relevance

12345678910>>...66

/plugin/pubchem/classes/
H A Dcache.php140 $handle = @opendir($this->mediaDir);
141 if ($handle === false)
143 while (($entry = readdir($handle))){
148 closedir($handle);
/plugin/findologicxmlexport/vendor/hoa/math/Visitor/
H A DArithmetic.php106 &$handle = null, argument
112 if (null === $handle) {
113 $handle = function ($x) {
118 $acc = &$handle;
/plugin/pubmed/classes/
H A Dcache.php140 $handle = @opendir($this->mediaDir);
141 if ($handle === false)
143 while (($entry = readdir($handle))){
148 closedir($handle);
/plugin/sqlcomp/
H A Dsyntax.php69 public function handle($match, $state, $pos, Doku_Handler $handler){ function in syntax_plugin_sqlcomp
217 $handle = fopen($filename,"w");
218 fwrite($handle,$Cache);
219 fclose($handle);
481 if(!$handle = fopen($Database,"r"))
485 $keys = fgetcsv ( $handle , 1000, $Query);
487 while ($row = fgetcsv ( $handle , 1000, $Query)){
496 fclose($handle);
/plugin/combo/ComboStrap/
H A DBrandButton.php73 * @var string the follow handle
75 private $handle; variable in ComboStrap\\BrandButton
194 string $handle = null, argument
200 ->setHandle($handle)
256 if ($this->handle === null) {
259 $templateData[Tag\FollowTag::HANDLE_ATTRIBUTE] = $this->handle;
628 public function setHandle(string $handle): BrandButton argument
630 $this->handle = $handle;
/plugin/findologicxmlexport/vendor/hoa/iterator/
H A DRepeater.php162 $handle = &$this->_body;
163 $handle($this->_i);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Browser/
H A DPropFindAllTest.php10 $pf->handle('{DAV:}displayname', 'foo');
21 $pf->handle('{DAV:}displayname', function() { return 'foo'; });
/plugin/numbering/
H A Daction.php115 if (!$handle = fopen(DOKU_INC .'ajax.txt', 'a')) {
120 fwrite($handle, "$data\n");
121 fclose($handle);
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DCorePlugin.php789 $propFind->handle('{DAV:}getlastmodified', function() use ($node) {
797 $propFind->handle('{DAV:}getcontentlength', [$node, 'getSize']);
798 $propFind->handle('{DAV:}getetag', [$node, 'getETag']);
799 $propFind->handle('{DAV:}getcontenttype', [$node, 'getContentType']);
804 $propFind->handle('{DAV:}quota-used-bytes', function() use (&$quotaInfo, $node) {
808 $propFind->handle('{DAV:}quota-available-bytes', function() use (&$quotaInfo, $node) {
816 $propFind->handle('{DAV:}supported-report-set', function() use ($propFind) {
823 $propFind->handle('{DAV:}resourcetype', function() use ($node) {
826 $propFind->handle('{DAV:}supported-method-set', function() use ($propFind) {
869 $propFind->handle('{http://calendarserver.org/ns/}getctag', function() use ($propFind) {
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DCorePlugin.php789 $propFind->handle('{DAV:}getlastmodified', function() use ($node) {
797 $propFind->handle('{DAV:}getcontentlength', [$node, 'getSize']);
798 $propFind->handle('{DAV:}getetag', [$node, 'getETag']);
799 $propFind->handle('{DAV:}getcontenttype', [$node, 'getContentType']);
804 $propFind->handle('{DAV:}quota-used-bytes', function() use (&$quotaInfo, $node) {
808 $propFind->handle('{DAV:}quota-available-bytes', function() use (&$quotaInfo, $node) {
816 $propFind->handle('{DAV:}supported-report-set', function() use ($propFind) {
823 $propFind->handle('{DAV:}resourcetype', function() use ($node) {
826 $propFind->handle('{DAV:}supported-method-set', function() use ($propFind) {
871 $propFind->handle('{http://calendarserver.org/ns/}getctag', function() use ($propFind) {
/plugin/issuetracker/
H A Dassilist.php36 if ($handle=opendir($path)) {
37 while (false!==($file=readdir($handle))) {
/plugin/vshare/syntax/
H A Ddebug.php40 public function handle($match, $state, $pos, Doku_Handler $handler)
63 $data = $syntax->handle("{{ $site>{$info['vid']} }}", DOKU_LEXER_MATCHED, 0, $handler);
38 public function handle($match, $state, $pos, Doku_Handler $handler) global() function in syntax_plugin_vshare_debug
/plugin/farmer/
H A Dadmin.php64 * handle user request
66 public function handle()
68 $this->adminplugin->handle();
74 public function handle() { global() function in admin_plugin_farmer
/plugin/jplayer/vendor/symfony/process/Pipes/
H A DWindowsPipes.php186 foreach ($this->fileHandles as $type => $handle) {
187 ftruncate($handle, 0);
188 fclose($handle);
/plugin/textinsert/
H A Dsyntax.php59 function handle($match, $state, $pos, Doku_Handler $handler){ function in syntax_plugin_textinsert
255 $handle=fopen("textinsert.txt",'a');
256 fwrite($handle,"$what\n");
257 fclose($handle);
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/src/MaxMind/Db/
H A DReader.php263 $handle = $this->fileHandle;
264 $fstat = fstat($handle);
273 fseek($handle, $fileSize - $i - $j - 1);
274 $matchBit = fgetc($handle);
/plugin/lang/
H A Dsyntax.php160 function handle($aMatch, $aState, $aPos, &$aHandler) { function in syntax_plugin_lang
214 * @see handle()
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DHandlerWrapper.php57 public function handle(array $record): bool function in Monolog\\Handler\\HandlerWrapper
59 return $this->handler->handle($record);
/plugin/include/_test/
H A Dnamespace_includes.test.php51 if ($handle = opendir($dir)) {
52 while (($file = readdir($handle)) !== false) {
57 closedir($handle);
/plugin/combo/vendor/symfony/process/Pipes/
H A DWindowsPipes.php196 foreach ($this->fileHandles as $type => $handle) {
197 ftruncate($handle, 0);
198 fclose($handle);
/plugin/labeled/action/
H A Dchange.php27 $this->handle();
35 private function handle() { function in action_plugin_labeled_change
/plugin/revealjs/syntax/
H A Dfragmentblock.php43 public function handle($match, $state, $pos, Doku_Handler $handler) { function in syntax_plugin_revealjs_fragmentblock
67 * @see handle()
/plugin/latexit/_test/
H A Dsyntax.test.php59 $r = $this->s->handle("\cite{bibliography}", "", 0, new Doku_Handler());
63 $r = $this->s->handle("~~~RECURSIVE~~~", "", 0, new Doku_Handler());
/plugin/rtmchecklist/
H A Dsyntax.php90 function handle($match, $state, $pos, Doku_Handler $handler){ function in syntax_plugin_rtmchecklist
136 * @see handle()
/plugin/freechat/phpfreechat/lib/csstidy-1.2/
H A Dcss_optimiser.php302 $handle = fopen('temp/'.$filename.'.css','w'); variable
303 if($handle) {
304 if(fwrite($handle,$css->print->plain()))
309 fclose($handle);

12345678910>>...66