• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP html_titleline函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中html_titleline函数的典型用法代码示例。如果您正苦于以下问题:PHP html_titleline函数的具体用法?PHP html_titleline怎么用?PHP html_titleline使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了html_titleline函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: gettext

echo gettext("Remove Extension");
?>
" onclick="return confirm('<?php 
echo gettext("Do you really want to remove the extension from the system?");
?>
')" />
        </div>
        <table width="100%" border="0" cellpadding="6" cellspacing="0">
			<?php 
html_separator();
?>
			<?php 
html_separator();
?>
			<?php 
html_titleline(gettext("Extension") . " " . gettext("Release Notes"));
?>
			<tr>
                <td class="listt">
                    <div>
                        <textarea style="width: 98%;" id="content" name="content" class="listcontent" cols="1" rows="25" readonly="readonly"><?php 
unset($lines);
exec("/bin/cat {$config['downloady']['rootfolder']}release_notes.txt", $lines);
foreach ($lines as $line) {
    echo $line . "\n";
}
?>
</textarea>
                    </div>
                </td>
			</tr>
开发者ID:crestAT,项目名称:nas4free-downloady,代码行数:31,代码来源:dly-update_extension.php


示例2: gettext

				<li class="tabinact"><a href="diag_infos_sockets.php"><span><?php 
echo gettext("Sockets");
?>
</span></a></li>
				<li class="tabinact"><a href="diag_infos_ups.php"><span><?php 
echo gettext("UPS");
?>
</span></a></li>
			</ul>
		</td>
	</tr>
  <tr>
    <td class="tabcont">
			<table width="100%" border="0">
				<?php 
html_titleline(gettext("RSYNC Client informations"));
?>
				<tr>
			    <td>
			    	<?php 
if (!is_array($config['rsync']) || !is_array($config['rsync']['rsyncclient'])) {
    ?>
			    	<pre><?php 
    echo gettext("No RSYNC Client configured");
    ?>
</pre>
			    	<?php 
} else {
    ?>
			    	<pre><?php 
    echo "<strong>" . gettext("Detected RSYNC remote shares") . ":</strong><br /><br />";
开发者ID:sdoney,项目名称:nas4free,代码行数:31,代码来源:diag_infos_rsync_client.php


示例3: gettext

				<li class="tabinact"><a href="diag_infos_sockets.php"><span><?php 
echo gettext("Sockets");
?>
</span></a></li>
				<li class="tabinact"><a href="diag_infos_ups.php"><span><?php 
echo gettext("UPS");
?>
</span></a></li>
			</ul>
		</td>
	</tr>
  <tr>
    <td class="tabcont">
    	<table width="100%" border="0">
    		<?php 
html_titleline(gettext("List of available target name on all configured iSCSI targets"));
?>
				<tr>
			    <td>
			    	<?php 
if (0 >= count($a_disk)) {
    ?>
			    	<pre><?php 
    echo gettext("iSCSI initiator disabled");
    ?>
</pre>
			    	<?php 
} else {
    ?>
			    	<pre><?php 
    foreach ($a_disk as $disk) {
开发者ID:ZenaVault,项目名称:FreeNAS-Source,代码行数:31,代码来源:diag_infos_iscsi.php


示例4: html_titleline

	<tr>
		<td class="tabcont">
			<table width="100%" border="0">
				<?php 
html_titleline(gettext("ZFS volume information and status"));
?>
				<tr>
					<td class="listt">
						<pre><span id="zfs_volume_list"><?php 
echo zfs_volume_display_list();
?>
</span></pre>
					</td>
				</tr>
				<?php 
html_titleline(gettext("ZFS volume properties"));
?>
				<tr>
					<td class="listt">
						<pre><span id="zfs_volume_properties"><?php 
echo zfs_volume_display_properties();
?>
</span></pre>
					</td>
				</tr>
			</table>
		</td>
	</tr>
</table>
<?php 
include "fend.inc";
开发者ID:rterbush,项目名称:nas4free,代码行数:31,代码来源:disks_zfs_volume_info.php


示例5: html_titleline_checkbox

?>
				<table width="100%" border="0" cellpadding="6" cellspacing="0">
					<?php 
html_titleline_checkbox("enable", gettext("Trivial File Transfer Protocol"), $pconfig['enable'] ? true : false, gettext("Enable"), "enable_change(false)");
?>
					<?php 
html_filechooser("dir", gettext("Directory"), $pconfig['dir'], gettext("The directory containing the files you want to publish. The remote host does not need to pass along the directory as part of the transfer."), $g['media_path'], true, 60);
?>
					<?php 
html_checkbox("allowfilecreation", gettext("Allow new files"), $pconfig['allowfilecreation'] ? true : false, gettext("Allow new files to be created."), gettext("By default, only already existing files can be uploaded."), false);
?>
					<?php 
html_separator();
?>
					<?php 
html_titleline(gettext("Advanced settings"));
?>
					<?php 
html_inputbox("port", gettext("Port"), $pconfig['port'], gettext("The port to listen to. The default is to listen to the tftp port specified in /etc/services."), false, 5);
?>
					<?php 
$a_user = array();
foreach (system_get_user_list() as $userk => $userv) {
    $a_user[$userk] = htmlspecialchars($userk);
}
?>
					<?php 
html_combobox("username", gettext("Username"), $pconfig['username'], $a_user, gettext("Specifies the username which the service will run as."), false);
?>
					<?php 
html_inputbox("umask", gettext("umask"), $pconfig['umask'], gettext("Sets the umask for newly created files to the specified value. The default is zero (anyone can read or write)."), false, 4);
开发者ID:ZenaVault,项目名称:FreeNAS-Source,代码行数:31,代码来源:services_tftp.php


示例6: isset

		<td class="tabcont">
<?php 
$netstat = isset($_POST['resolve']) && $_POST['resolve'] == 'yes' ? 'netstat -rW' : 'netstat -nrW';
list($dummy, $internet, $internet6) = explode("\n\n", shell_exec($netstat));
foreach (array(&$internet, &$internet6) as $tabindex => $table) {
    $osver = @exec("/usr/bin/uname -U");
    if ($osver >= 1000000) {
        $elements = $tabindex == 0 ? 7 : 7;
    } else {
        $elements = $tabindex == 0 ? 8 : 8;
    }
    $name = $tabindex == 0 ? 'IPv4' : 'IPv6';
    ?>
			<table width="100%" border="0" cellpadding="6" cellspacing="0">
				<?php 
    html_titleline($name, $elements);
    foreach (explode("\n", $table) as $row => $line) {
        if ($row == 0) {
            continue;
        }
        if ($line == '') {
            continue;
        }
        print "<tr>\n";
        $col = 0;
        foreach (explode(' ', $line) as $entry) {
            if ($entry == '') {
                continue;
            }
            if ($row == 1) {
                $class = $col == 0 ? "listhdrlr" : "listhdrr";
开发者ID:sdoney,项目名称:nas4free,代码行数:31,代码来源:diag_routes.php


示例7: html_titleline

				</tr>
				<?php 
}
?>
			</table>
				<br />







				<table width="100%" border="0" cellpadding="5" cellspacing="0">
					<?php 
html_titleline(gettext('Options'));
?>
					<?php 
html_checkbox("leave_autosnapshots", gettext("Leave auto snapshot configuration"), true, gettext("Leave already configured auto snapshots."), "", false);
?>
					<?php 
html_checkbox("import_disks", gettext("Import disks"), true, gettext("Import disks used in configuration."), "", false);
?>
					<?php 
html_checkbox("import_disks_overwrite", gettext("Overwrite disks configuration"), false, gettext("Overwrite already configured disks (only affects filesystem value)."), "", false);
?>
				</table>
				<br />
				<div id="submit">
					<input type="submit" name="import_config" value="<?php 
echo gettext('Synchronize');
开发者ID:rterbush,项目名称:nas4free,代码行数:31,代码来源:disks_zfs_config_sync.php


示例8: tblrow

         tblrow('[' . $i . '] Maximum seen current (A)', $ups['outlet.' . $i . '.current.maximum'], 'A');
         tblrow('[' . $i . '] Current value of real power (W)', $ups['outlet.' . $i . '.realpower'], 'W');
         tblrow('[' . $i . '] Voltage (V)', $ups['outlet.' . $i . '.voltage'], 'V');
         tblrow('[' . $i . '] Power Factor (dimensionless value between 0 and 1)', $ups['outlet.' . $i . '.powerfactor']);
         tblrow('[' . $i . '] Crest Factor (dimensionless, equal to or greater than 1)', $ups['outlet.' . $i . '.crestfactor']);
         tblrow('[' . $i . '] Apparent power (VA)', $ups['outlet.' . $i . '.power'], 'VA');
     }
     html_separator();
     html_titleline(gettext('NUT Internal Driver Information'));
     tblrow(gettext('Driver used'), $ups['driver.name']);
     tblrow(gettext('Driver version'), $ups['driver.version']);
     tblrow(gettext('Driver version internal'), $ups['driver.version.internal']);
     tblrow(gettext('Parameter xxx (ups.conf or cmdline -x) setting'), $ups['driver.parameter.xxx']);
     tblrow(gettext('Flag xxx (ups.conf or cmdline -x) status'), $ups['driver.flag.xxx']);
     html_separator();
     html_titleline(gettext('Internal Server Information'));
     tblrow(gettext('Server information'), $ups['server.info']);
     tblrow(gettext('Server version'), $ups['server.version']);
     html_separator();
     html_separator();
     html_titleline_checkbox('raw_upsc_enable', 'NUT', $upsc_enable ? true : false, gettext('Show RAW UPS Info'), 'upsc_enable_change()');
     tblrow('RAW info', htmlspecialchars($read), 'pre', 'upsc_raw_command');
     unset($handle);
     unset($read);
     unset($lines);
     unset($status);
     unset($disp_status);
     unset($ups);
 }
 unset($cmd);
 ?>
开发者ID:rterbush,项目名称:nas4free,代码行数:31,代码来源:diag_infos_ups.php


示例9: gettext

</span></a></li>
	<li class="tabinact"><a href="disks_raid_graid5_tools.php"><span><?php 
echo gettext("Tools");
?>
</span></a></li>
	<li class="tabact"><a href="disks_raid_graid5_info.php" title="<?php 
echo gettext("Reload page");
?>
" ><span><?php 
echo gettext("Information");
?>
</span></a></li>
  </ul>
  </td></tr>
  <tr> 
    <td class="tabcont">
	<table width="100%" border="0" cellspacing="0" cellpadding="0">
	    <?php 
html_titleline(gettext("RAID 5 information and status"));
?>
	    <tr>
		<td class="listt">
		    <pre><span id="raidinfo"></span></pre>
		</td>
	    </tr>
    	</table>
    </td>
  </tr>
</table>
<?php 
include "fend.inc";
开发者ID:sdoney,项目名称:nas4free,代码行数:31,代码来源:disks_raid_graid5_info.php


示例10: html_separator

										</td>
									 </tr>  -->
			<?php 
//endfor;
?>
								</table>
					<?php 
// endif;
?>
				</td></tr>
			<?php 
html_separator();
?>
				</tr>
				<?php 
html_titleline("Framework configuration");
$work_dir_type = array('0' => 'Home', '2' => 'Different folder');
if (true == bhyve_zfs_check()) {
    $work_dir_type[1] = 'Dataset';
}
html_combobox("work_dir_type", "Working folder", $pconfig['work_dir_type'], $work_dir_type, "Virtual machines will store on dataset", false, false, "clickfix()");
html_text("work_dir_simple", "", "Virtual machines will store at extension home folder");
if (FALSE !== ($datasets_list = bhyve_datasets_list())) {
    for ($i = 0; $i < count($datasets_list); ++$i) {
        $a_datasets_list[$datasets_list[$i][1]] = $datasets_list[$i][1];
    }
    html_combobox("work_dir_zfs", "", $pconfig['work_dir'], $a_datasets_list, "Virtual machines will store on dataset", false, false, "clickfix()");
}
?>
				<tr id='work_dir_diff_tr'>
					<td width='22%' valign='top' class='vncell'><label for='work_dir_diff'></label></td>
开发者ID:alexey1234,项目名称:vmbhyve_nas4free,代码行数:31,代码来源:extensions_bhyve.php


示例11: html_folderbox

html_folderbox("content", gettext("Content"), $pconfig['content'], gettext("Location of the files to share."), $g['media_path'], true);
?>
					<?php 
html_inputbox("rescaninterval", gettext("Rescan interval"), $pconfig['rescaninterval'], gettext("Scan file system every N seconds to see if any files have been added or removed. Set to 0 to disable background scanning. If background rescanning is disabled, a scan can still be forced from the status page of the administrative web interface."), false, 5);
?>
					<?php 
html_checkbox("alwaysscan", gettext("Always scan"), $pconfig['alwaysscan'] ? true : false, "", gettext("Whether scans should be skipped if there are no users connected. This allows the drive to spin down when no users are connected."), false);
?>
					<?php 
html_combobox("scantype", gettext("Scan type"), $pconfig['scantype'], array("0" => gettext("Normal"), "1" => gettext("Aggressive"), "2" => gettext("Painfully aggressive")), "", false);
?>
					<?php 
html_separator();
?>
					<?php 
html_titleline(gettext("Administrative WebGUI"));
?>
					<?php 
html_passwordbox("admin_pw", gettext("Password"), $pconfig['admin_pw'], sprintf("%s %s", gettext("Password for the administrative pages."), gettext("Default user name is 'admin'.")), true, 20);
?>
					<?php 
$if = get_ifname($config['interfaces']['lan']['if']);
$ipaddr = get_ipaddr($if);
$url = htmlspecialchars("http://{$ipaddr}:{$pconfig['port']}");
$text = "<a href='{$url}' target='_blank'>{$url}</a>";
?>
					<?php 
html_text("url", gettext("URL"), $text);
?>
				</table>
				<div id="submit">
开发者ID:ZenaVault,项目名称:FreeNAS-Source,代码行数:31,代码来源:services_daap.php


示例12: render_ajax

    render_ajax($procinfo);
}
include "fbegin.inc";
?>
<script type="text/javascript">//<![CDATA[
$(document).ready(function(){
	var gui = new GUI;
	gui.recall(0, 5000, 'status_process.php', null, function(data) {
		$('#procinfo').val(data.data);
	});
});
//]]>
</script>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td class="tabcont">
			<table width="100%" border="0" cellspacing="0" cellpadding="0">
				<?php 
html_titleline(gettext("Processes information"));
?>
			  <tr>
			    <td class="listt">
			    	<pre><textarea style="width: 98%;" id="procinfo" name="procinfo" class="listcontent" cols="95" rows="30" readonly="readonly"></textarea></pre>
			    </td>
			  </tr>
			</table>
		</td>
	</tr>
</table>
<?php 
include "fend.inc";
开发者ID:rterbush,项目名称:nas4free,代码行数:31,代码来源:status_process.php


示例13: html_passwordbox

?>
					<?php 
html_passwordbox("directorpassword", gettext("Password"), $pconfig['directorpassword'], '', true, 40);
?>

					<?php 
html_separator();
?>
					<?php 
foreach ($pconfig['device'] as $id => $device) {
    ?>
						<?php 
    $device_nb = $id + 1;
    ?>
						<?php 
    html_titleline("Device {$device_nb}");
    ?>
						<?php 
    html_inputbox("device[{$id}][name]", gettext("Name"), $pconfig['device'][$id]['name'], sprintf(gettext("Default is %s."), "OPENNAS-DEVICE-default"), true, 40);
    ?>
						<?php 
    html_combobox("device[{$id}][mediatype]", gettext("Media type"), $pconfig['device'][$id]['mediatype'], array_combine($bacula_type, $bacula_type), sprintf(gettext("Default is %s."), "File"), true);
    ?>
						<?php 
    html_filechooser("device_" . $id . "_archivepath", gettext("Archive device"), $pconfig['device'][$id]['archivepath'], '', '/mnt', true);
    ?>
						<?php 
    html_checkbox("device[{$id}][labelmedia]", gettext("Label media"), !empty($pconfig['device'][$id]['labelmedia']), gettext("Labeled the media"));
    ?>
						<?php 
    html_checkbox("device[{$id}][randomaccess]", gettext("Random access"), !empty($pconfig['device'][$id]['randomaccess']), gettext("The Storage daemon will submit a Mount Command before attempting to open the device"));
开发者ID:BillTheBest,项目名称:OpenNAS,代码行数:31,代码来源:services_bacula_storage_daemon.php


示例14: gettext

?>
" <?php 
echo $readonly;
?>
 /><br />
							<span class="vexpl"><?php 
echo gettext("IPv6 addresses");
?>
</span><br />
			      </td>
			    </tr>
			    <?php 
html_separator();
?>
					<?php 
html_titleline(gettext("Time"));
?>
					<?php 
html_timezonecombobox("timezone", gettext("Time zone"), $pconfig['timezone'], gettext("Select the location closest to you."), false);
?>
			    <tr>
						<td width="22%" valign="top" class="vncell"><?php 
echo gettext("System time");
?>
</td>
						<td width="78%" class="vtable">
							<input id="systime" size="20" maxlength="20" name="systime" type="text" value="" />
							<img src="cal.gif" onclick="showChooser(this, 'systime', 'chooserSpan', 1950, 2020, Date.patterns.Default, true);" alt="" />
							<div id="chooserSpan" class="dateChooser select-free" style="display: none; visibility: hidden; width: 160px;"></div><br />
							<span class="vexpl"><?php 
echo gettext("Enter desired system time directly (format mm/dd/yyyy hh:mm) or use icon to select it.");
开发者ID:sdoney,项目名称:nas4free,代码行数:31,代码来源:system.php


示例15: html_separator

    html_separator();
    ?>
											<?php 
    html_titleline_checkbox("ipv6_enable", gettext("IPv6 Configuration"), !empty($pconfig['ipv6_enable']) ? true : false, gettext("Activate"), "enable_change(this)");
    ?>
											<?php 
    html_combobox("ipv6type", gettext("Type"), $pconfig['ipv6type'], array("Static" => gettext("Static"), "Auto" => gettext("Auto")), "", true, false, "ipv6_type_change()");
    ?>
											<?php 
    html_ipv6addrbox("ipv6addr", "ipv6subnet", gettext("IP address"), !empty($pconfig['ipv6addr']) ? $pconfig['ipv6addr'] : "", !empty($pconfig['ipv6subnet']) ? $pconfig['ipv6subnet'] : "", "", true);
    ?>
											<?php 
    html_separator();
    ?>
											<?php 
    html_titleline(gettext("Advanced Configuration"));
    ?>
											<?php 
    html_inputbox("mtu", gettext("MTU"), $pconfig['mtu'], gettext("Set the maximum transmission unit of the interface to n, default is interface specific. The MTU is used to limit the size of packets that are transmitted on an interface. Not all interfaces support setting the MTU, and some interfaces have range restrictions."), false, 5);
    ?>
<!--
											<?php 
    html_checkbox("polling", gettext("Device polling"), $pconfig['polling'] ? true : false, gettext("Enable device polling"), gettext("Device polling is a technique that lets the system periodically poll network devices for new data instead of relying on interrupts. This can reduce CPU load and therefore increase throughput, at the expense of a slightly higher forwarding delay (the devices are polled 1000 times per second). Not all NICs support polling."), false);
    ?>
-->
											<?php 
    html_combobox("media", gettext("Media"), $pconfig['media'], array("autoselect" => gettext("Autoselect"), "10baseT/UTP" => "10baseT/UTP", "100baseTX" => "100baseTX", "1000baseTX" => "1000baseTX", "1000baseSX" => "1000baseSX"), "", false, false, "media_change()");
    ?>
											<?php 
    html_combobox("mediaopt", gettext("Duplex"), $pconfig['mediaopt'], array("half-duplex" => "half-duplex", "full-duplex" => "full-duplex"), "", false);
    ?>
开发者ID:sdoney,项目名称:nas4free,代码行数:31,代码来源:interfaces_opt.php


示例16: gettext

				<li class="tabinact"><a href="diag_infos_sockets.php"><span><?php 
echo gettext("Sockets");
?>
</span></a></li>
				<li class="tabinact"><a href="diag_infos_ups.php"><span><?php 
echo gettext("UPS");
?>
</span></a></li>
			</ul>
		</td>
	</tr>
  <tr>
    <td class="tabcont">
    	<table width="100%" border="0">
				<?php 
html_titleline(gettext("Swap status"));
?>
				<tr>
			    <td>
			    	<?php 
if (!isset($config['system']['swap']['enable'])) {
    ?>
			    	<pre><?php 
    echo gettext("Swap disabled");
    ?>
</pre>
			    	<?php 
} else {
    ?>
			    	<pre><?php 
    exec("/usr/sbin/swapinfo", $rawdata);
开发者ID:ZenaVault,项目名称:FreeNAS-Source,代码行数:31,代码来源:diag_infos_swap.php


示例17: html_inputbox

html_inputbox("basejail", gettext(_THEBRIG_BASE), $pconfig['basejail'], gettext(_THEBRIG_BASE_DESC), false, 50, $base_ro);
?>
	 	<?php 
//html_filechooser("rootfolder", gettext("Media Directory"), $pconfig['rootfolder'], gettext("Directory that contains our jails (e.g /mnt/Mount_Point/Folder). We will create folder /mnt/Mount_Point/Folder/thebrig/"), $g['media_path'], true);
?>
		<?php 
html_inputbox("template", gettext("Template Location"), $pconfig['template'], gettext("Sets the alternate location for the buildworld jail template. Default is in a folder named template within TheBrig's installation folder."), false, 50);
?>
	 	<?php 
//html_filechooser("rootfolder", gettext("Media Directory"), $pconfig['rootfolder'], gettext("Directory that contains our jails (e.g /mnt/Mount_Point/Folder). We will create folder /mnt/Mount_Point/Folder/thebrig/"), $g['media_path'], true);
?>
		<?php 
html_separator();
?>
		<?php 
html_titleline(gettext(_THEBRIG_CLEANUP));
?>
		
		<!-- This is the row beneath the title -->
		<tr><td width="22%" valign="top" class="vncellreq">&nbsp;</td>
			<td width="78%" class="vtable">
				<input type="checkbox" name="remove" value="1" onclick="return message(this);" ><?php 
echo _THEBRIG_CLEANUP_DESC;
?>
			</td>
		</tr>
			
		<!-- This is the Save button -->
		<tr><td width="22%" valign="top">&nbsp;</td>
			<td width="78%">
			 	<input name="Submit" type="submit" class="formbtn" value="<?php 
开发者ID:kinged007,项目名称:thebrig,代码行数:31,代码来源:extensions_thebrig_config.php


示例18: print_input_errors

				<?php 
if (!empty($input_errors)) {
    print_input_errors($input_errors);
}
?>
				<?php 
if (!empty($savemsg)) {
    print_info_box($savemsg);
}
?>
				<table width="100%" border="0" cellpadding="6" cellspacing="0">
			    <?php 
html_separator();
?>
			    <?php 
html_titleline(gettext("WebGUI"));
?>
					<?php 
html_passwordbox("password_old", gettext("Current password"), "", "", true);
?>
					<?php 
html_passwordconfbox("password_new", "password_confirm", gettext("New password"), "", "", gettext("If you want to change the password for accessing the WebGUI, enter it here twice."), true);
?>
			  </table>
				<div id="submit">
					<input name="Submit" type="submit" class="formbtn" value="<?php 
echo gettext("Save");
?>
" />
				</div>
				<br>
开发者ID:sdoney,项目名称:nas4free,代码行数:31,代码来源:system_password.php


示例19: implode

    echo $vdevice['pool'];
    ?>
</td>
					<td class="listr"><?php 
    echo implode(', ', $vdevice['device']);
    ?>
</td>
				</tr>
				<?php 
}
?>
			</table>
			<br />
			<table width="100%" border="0" cellpadding="0" cellspacing="0">
				<?php 
html_titleline(gettext('Datasets') . ' (' . count($zfs['datasets']['dataset']) . ')', 7);
?>
				<tr>
					<td width="16%" class="listhdrlr"><?php 
echo gettext("Name");
?>
</td>
					<td width="14%" class="listhdrr"><?php 
echo gettext("Pool");
?>
</td>
					<td width="14%" class="listhdrr"><?php 
echo gettext("Compression");
?>
</td>
					<td width="14%" class="listhdrr"><?php 
开发者ID:ZenaVault,项目名称:FreeNAS-Source,代码行数:31,代码来源:disks_zfs_config_current.php


示例20: htmlspecialchars

    echo htmlspecialchars(implode("\n", $rawdata));
    unset($rawdata);
    echo "<br />" . gettext("Ping winbindd to see if it is alive:") . "<br />";
    exec("/usr/local/bin/wbinfo -p 2>&1", $rawdata);
    echo htmlspecialchars(implode("\n", $rawdata));
    unset($rawdata);
    echo "<br />" . gettext("Check shared secret:") . "<br />";
    exec("/usr/local/bin/wbinfo -t 2>&1", $rawdata);
    echo htmlspecialchars(implode("\n", $rawdata));
    unset($rawdata);
    ?>
</pre>
					</td>
				</tr>
				<?php 
    html_titleline(gettext("List of imported users"));
    ?>
				<tr>
					<td>
						<pre><?php 
    exec("/usr/local/bin/net rpc user -S {$config['ad']['domaincontrollername']} -U " . escapeshellarg("{$config['ad']['username']}%{$config['ad']['password']}") . " 2>&1", $rawdata);
    echo htmlspecialchars(implode("\n", $rawdata));
    unset($rawdata);
    ?>
</pre>
						<?php 
}
?>
					</td>
				</tr>
			</table>
开发者ID:rterbush,项目名称:nas4free,代码行数:31,代码来源:diag_infos_ad.php



注:本文中的html_titleline函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP html_titleline_checkbox函数代码示例发布时间:2022-05-15
下一篇:
PHP html_title函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap