%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/phpmyadmin/templates/columns_definitions/ |
Upload File : |
<?php $title = ''; if (isset($columnMeta['column_status'])) { if ($columnMeta['column_status']['isReferenced']) { $title .= sprintf( __('Referenced by %s.'), implode(",", $columnMeta['column_status']['references']) ); } if ($columnMeta['column_status']['isForeignKey']) { if (!empty($title)) { $title .= "\n"; } $title .= __('Is a foreign key.'); } } if (empty($title)) { $title = __('Column'); } ?> <input id="field_<?php echo $columnNumber; ?>_<?php echo ($ci - $ci_offset); ?>" <?php if (isset($columnMeta['column_status']) && !$columnMeta['column_status']['isEditable']): ?> disabled="disabled" <?php endif; ?> type="text" name="field_name[<?php echo $columnNumber; ?>]" maxlength="64" class="textfield" title="<?php echo $title; ?>" size="10" value="<?php if (isset($columnMeta['Field'])) echo htmlspecialchars($columnMeta['Field']); ?>" /> <?php if ($cfgRelation['centralcolumnswork'] && !(isset($columnMeta['column_status']) && !$columnMeta['column_status']['isEditable']) ): ?> <p style="font-size:80%;margin:5px 2px" id="central_columns_<?php echo $columnNumber; ?>_<?php echo ($ci - $ci_offset); ?>"> <a data-maxrows="<?php echo $GLOBALS['cfg']['MaxRows']; ?>" href="#" class="central_columns_dialog"> <?php echo __('Pick from Central Columns'); ?> </a> </p> <?php endif; ?>