Home
last modified time | relevance | path

Searched refs:field (Results 1 – 12 of 12) sorted by relevance

/dokuwiki/lib/scripts/
Dedit.js162 var field = jQuery('#' + textboxId)[0],
164 opts = [field.value.substr(0,DWgetSelection(field).start)];
165 if (field.form && field.form.prefix) {
167 opts.push(field.form.prefix.value);
/dokuwiki/inc/lang/id/
Dupdateprofile.txt3 Anda hanya perlu mengisikan field yang ingin Anda ubah. Anda tidak dapat mengubah username Anda.
/dokuwiki/inc/
DJpegMeta.php145 foreach($fields as $field){
146 $lower_field = strtolower($field);
148 $info = $this->getIPTCField(substr($field,5));
150 $info = $this->getExifField(substr($field,5));
152 $info = $this->getXmpField(substr($field,4));
154 $info = $this->getFileField(substr($field,5));
156 $info = $this->getDateField(substr($field,5));
166 $info = $this->getExifField($field);
200 * @param string $field field name
204 function setField($field, $value) { argument
[all …]
Dmedia.php180 foreach ($fields as $key => $field) {
182 if (empty($field[0])) continue;
183 $tags = [$field[0]];
184 if (isset($field[3]) && is_array($field[3])) $tags = array_merge($tags, $field[3]);
192 'name' => 'meta[' . $field[0] . ']'
196 if ($field[2] == 'text') {
199 ($lang[$field[1]] ?: $field[1] . ':')
202 $form->addTextarea($p['name'], $lang[$field[1]])->id($p['id'])
/dokuwiki/lib/plugins/extension/
DInstaller.php120 * @param string $field name of the upload file
123 public function installFromUpload($field) argument
126 if ($_FILES[$field]['error']) {
127 throw new Exception('msg_upload_failed', [$_FILES[$field]['error']]);
131 if (!move_uploaded_file($_FILES[$field]['tmp_name'], "$tmp/upload.archive")) {
136 $this->fileToBase($_FILES[$field]['name']),
/dokuwiki/vendor/splitbrain/php-archive/src/
DTar.php768 * @param string $field
771 static public function numberDecode($field) argument
773 $firstByte = ord(substr($field, 0, 1));
775 $value = -1 << (8 * strlen($field));
777 for ($i = strlen($field) - 1; $i >= 0; $i--) {
778 $value += ord(substr($field, $i, 1)) << $shift;
784 for ($i = strlen($field) - 1; $i > 0; $i--) {
785 $value += ord(substr($field, $i, 1)) << $shift;
789 $value = octdec(trim($field));
/dokuwiki/lib/plugins/authplain/
Dauth.php204 foreach ($changes as $field => $value) {
205 if ($field == 'user') {
209 if ($field == 'pass') $value = auth_cryptPassword($value);
210 $userinfo[$field] = $value;
/dokuwiki/lib/plugins/popularity/lang/en/
Dintro.txt3 …kuWiki developers. This helps them understand how DokuWiki is used in the field, and makes sure fu…
/dokuwiki/lib/plugins/authad/
Dauth.php238 foreach ($this->conf['additional'] as $field) {
239 if (isset($result[0][strtolower($field)])) {
240 $info[$field] = $result[0][strtolower($field)][0];
/dokuwiki/conf/
Dmysql.conf.php.example74 * information about one user. The field needed are:
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
DX509.php1875 foreach ($dn['rdnSequence'] as $field) {
1876 $prop = $field[0]['type'];
1877 $value = $field[0]['value'];
/dokuwiki/vendor/geshi/geshi/
DCHANGELOG1014 - Added a new field - language_path - that can be set either when the constructor is