Home
last modified time | relevance | path

Searched refs:dest (Results 1 – 25 of 133) sorted by relevance

123456

/plugin/redirect2/
Daction.php68 * @param string $dest redirect destination, absolute id or external url
71 protected function getRedirectURL($status = 302, $dest) argument
75 if (preg_match('@^(https?://|/)@', $dest)) {
76 $url = $dest; // external url
78 list($ext, $mime) = mimetype($dest);
80 $url = ml($dest);
82 list($page, $section) = explode('#', $dest, 2);
95 $this->_show_message('redirected_from', $ID, $dest, $status);
144 $dest = $id;
146 $url = $this->getRedirectURL($status, $dest);
[all …]
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/
DBase32.php229 $dest = '';
251 $dest .= \pack(
282 $dest .= \pack(
302 $dest .= \pack(
320 $dest .= \pack(
335 $dest .= \pack(
347 $dest .= \pack(
357 $dest .= \pack(
363 $dest .= \pack(
376 return $dest;
[all …]
DBase64.php72 $dest = '';
82 $dest .=
95 $dest .=
100 $dest .= '=';
103 $dest .=
107 $dest .= '==';
111 return $dest;
159 $dest = '';
169 $dest .= \pack(
186 $dest .= \pack(
[all …]
/plugin/deletepageguard/build/
H A Dcreate-dist.php42 function copyFileOrDir($source, $dest) { argument
45 $dest = rtrim(str_replace('\\', '/', $dest), '/');
48 $destDir = dirname($dest);
52 copy($source, $dest);
55 if (!is_dir($dest)) {
56 mkdir($dest, 0755, true);
69 $destPath = $dest . '/' . $relativePath;
/plugin/dokutexit/
Dconfig.php401 $dest = $this->texitdir.'/'.noNS($value['id'])."-content.tex";
402 $dest = $this->_escape_fn($dest);
403 $result[$fn] = array('type' => 'tex', 'fn' => $dest);
436 function compile_header($base, $dest, $all_files) { argument
438 $this->simple_copy($base, $dest);
466 file_put_contents($dest, $toappend, FILE_APPEND);
476 function compile_tex($base, $dest) { argument
485 $this->texit_render_obj->process($base, $dest);
494 function simple_copy($base, $dest) { argument
495 if (!copy($base, $dest)) {
[all …]
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
DStreamHandler.php58 $dest = isset($request['client']['save_to'])
61 $stream = $this->drain($stream, $dest);
88 * @param string|resource|StreamInterface $dest
93 private function drain($stream, $dest) argument
96 if (!is_resource($dest)) {
99 stream_copy_to_stream($stream, $dest);
101 rewind($dest);
102 return $dest;
107 $dest = is_string($dest)
108 ? new Stream(Utils::open($dest, 'r+'))
[all …]
/plugin/odt/ODT/
Dstyleset.php189 public function addStyleInternal(&$dest, &$dest_by_name, ODTStyle $new, $overwrite=false) { argument
195 for ($index = 0 ; $index < count($dest) ; $index++) {
196 if ($dest [$index]->isDefault() &&
197 $dest [$index]->getFamily() == $family) {
200 $dest [$index] = $new;
207 $dest [] = $new;
213 $dest [] = $new;
219 for ($index = 0 ; $index < count($dest) ; $index++) {
220 if ($dest [$index] == $dest_by_name [$name]) {
221 $dest [$index] = $new;
Dpage.php67 …public static function queryFormat (&$dest, $format, $orientation='portrait', $margin_top=2, $marg… argument
225 $dest ['format'] = $format;
226 $dest ['orientation'] = $orientation;
227 $dest ['width'] = $width;
228 $dest ['height'] = $height;
232 $dest ['margin-top'] = $margin_top;
233 $dest ['margin-bottom'] = $margin_bottom;
234 $dest ['margin-left'] = $margin_left;
235 $dest ['margin-right'] = $margin_right;
DODTExport.php166 … $dest = $params->document->getStyle($first_master->getProperty('style-page-layout-name'));
168 if (isset($source) && isset($dest)) {
169 $dest->setProperty('width', $source->getProperty('width'));
170 $dest->setProperty('height', $source->getProperty('height'));
171 $dest->setProperty('margin-top', $source->getProperty('margin-top'));
172 $dest->setProperty('margin-right', $source->getProperty('margin-right'));
173 $dest->setProperty('margin-bottom', $source->getProperty('margin-bottom'));
174 $dest->setProperty('margin-left', $source->getProperty('margin-left'));
/plugin/odt/ODT/styles/
DODTStyle.php159 … protected function setPropertyInternal($property, $odt_property, $value, $section, &$dest=NULL) { argument
161 if ( !isset($dest) ) {
166 $dest [$property] = array ('odt_property' => $odt_property,
171 if ( !isset($dest) ) {
174 unset ($dest [$property]);
218 … protected function importPropertiesInternal(array $fields, $properties, $disabled, &$dest=NULL) { argument
221 …$this->setPropertyInternal($property, $fields[$property][0], $value, $fields[$property][1], $dest);
/plugin/syntaxhighlightjs/
Dgulpfile.js12 var dest = { variable
25 .pipe(gulp.dest(dest.js));
36 .pipe(gulp.dest(dest.css));
/plugin/database2/
Dmedia.php389 $dest = imagecreatetruecolor( $width, $height ); variable
391 imagesavealpha( $dest, ( $minor === 'png' ) );
392 imagealphablending( $dest, ( $minor !== 'png' ) );
395 imagecolorallocate( $dest, 255, 255, 255 );
397 imagecopyresampled( $dest, $img, 0, 0, 0, 0,
398 imagesx( $dest ), imagesy( $dest ),
404 $dest = $img; variable
414 imagegif( $dest );
420 imagejpeg( $dest );
426 imagepng( $dest );
/plugin/davcal/vendor/sabre/dav/bin/
H A Dnaturalselection82 dest="simulate",
90 dest="runs",
97 dest="sleep",
104 dest="threshold",
113 dest="min_erase",
H A Dgooglecode_upload.py204 parser.add_option('-s', '--summary', dest='summary',
206 parser.add_option('-p', '--project', dest='project',
208 parser.add_option('-u', '--user', dest='user',
210 parser.add_option('-w', '--password', dest='password',
212 parser.add_option('-l', '--labels', dest='labels',
/plugin/statistics/vendor/mustangostang/spyc/php4/
D5to4.php5 function php5to4 ($src, $dest) { argument
13 $f = fopen ($dest, 'w');
16 print "Written to $dest.\n";
/plugin/freechat/phpfreechat/src/
Dpfctools.php172 * @param string $dest Destination path
175 function copy_r($source, $dest, $modedir = 0755, $modefile = 0664) argument
179 $ret = copy($source, $dest);
180 chmod($dest, $modefile);
185 if (!is_dir($dest)) {
186 mkdir($dest, $modedir);
203 if ($dest !== $source . DIRECTORY_SEPARATOR . $e)
204 … copy_r($source . DIRECTORY_SEPARATOR . $e, $dest . DIRECTORY_SEPARATOR . $e, $modedir, $modefile);
/plugin/farm/install/
Dfarmstructurecreator.php18 function cp_r($src, $dest, $mv=false, $avoid=array(), $lvl=0) { argument
21 $r = copy($src, $dest);
22 chmod($dest, fileperms($src));
27 if(!@is_dir($dest)) mkdir($dest, fileperms($src));
32 $r &= cp_r($src.'/'.$i, $dest.'/'.$i, $mv, $avoid, $lvl+1);
/plugin/dw2pdf/vendor/mpdf/mpdf/data/
Dout.php12 $dest = $_REQUEST['dest']; variable
16 if ($dest === 'I') {
25 } elseif ($dest === 'D') {
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
DUtils.php89 * @param StreamInterface $dest Stream to write to
95 StreamInterface $dest, argument
100 if (!$dest->write($source->read(1048576))) {
114 $dest->write($buf);
/plugin/asciidocjs/node_modules/with/node_modules/acorn/rollup/
Dconfig.walk.js8 { dest: 'dist/walk.js', format: 'umd' }, property
9 { dest: 'dist/walk.es.js', format: 'es' } property
Dconfig.main.js8 { dest: 'dist/acorn.js', format: 'umd' }, property
9 { dest: 'dist/acorn.es.js', format: 'es' } property
Dconfig.loose.js14 { dest: 'dist/acorn_loose.js', format: 'umd' }, property
15 { dest: 'dist/acorn_loose.es.js', format: 'es' } property
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
Db1efa1c51a34dd5ab5511b71a399f5b1.asciidoc10 'dest' => [
11 'index' => 'dest',
D400e89eb46ead8e9c9e40f123fd5e590.asciidoc11 'dest' => [
12 'index' => 'dest',
D78c96113ae4ed0054e581b17542528a7.asciidoc15 'dest' => [
16 'index' => 'dest',

123456