本文整理汇总了PHP中theme_file函数的典型用法代码示例。如果您正苦于以下问题:PHP theme_file函数的具体用法?PHP theme_file怎么用?PHP theme_file使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了theme_file函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: theme_file
require_once "logged-vip.php";
}
}
// Admin menü
if ($user_check_gmlevel == $wam_gmlevel_admin) {
require_once "logged-admin.php";
}
?>
<table class="nav" cellspacing="0" cellpadding="0">
<tr>
<td>
<ul class="nav">
<li class="nav-title">Systemsteuerung<img class="nav-icon" src="<?php
echo theme_file("images/icons/tools.png");
?>
" alt="Account mûveletek" /></li>
<li><a href="index.php">Account Daten</a></li>
<div class="dotted-line"></div>
<li><a href="?id=account-modify">Daten ändern</a></li>
<div class="dotted-line"></div>
<li><a href="?id=my-characters">Meine Charaktere</a></li>
<div class="dotted-line"></div>
<li><a href="?id=character-transfer">Charaktertransfer</a></li>
<div class="dotted-line"></div>
</ul>
</td>
</tr>
</table>
示例2: webpro_core_file
/**
* File element override
* Sets form file input max width
*/
function webpro_core_file($vars)
{
$vars['element']['#size'] = $vars['element']['#size'] > 40 ? 40 : $vars['element']['#size'];
return theme_file($vars);
}
示例3: phptemplate_file
function phptemplate_file($element)
{
$element['#size'] = 40;
return theme_file($element);
}
示例4: acquia_marina_file
/**
* Set form file input max char size
*/
function acquia_marina_file($element)
{
$element['#size'] = $element['#size'] > 40 ? 40 : $element['#size'];
return theme_file($element);
}
示例5: fusion_core_file
/**
* File element override
* Sets form file input max width
*/
function fusion_core_file($element)
{
$element['#size'] = $element['#size'] > 40 ? 40 : $element['#size'];
return theme_file($element);
}
示例6: adatok
" alt="Account adatok (Bejelentkezve: <?php
echo $user_check_accountname;
?>
)" />
</td>
</tr>
<tr>
<td class="body3-body">
<table class="location-info" cellspacing="0" cellpadding="0">
<tr>
<td class="location-info-img">
<img src="<?php
echo theme_file("images/icons/info.png");
?>
" alt="Información" />
</td>
<td class="location-info-text">
Aquí podrás ver la información de las expansiónes asociadas a tu cuenta.
</td>
</tr>
</table>
<table class="body6" cellspacing="0" cellpadding="0">
<tr>
<tr>
<td align="center">
示例7: newcomer_file
/**
* Implements theme_file().
*/
function newcomer_file($variables)
{
// Assign the Bootstrap class:
_form_set_class($variables['element'], array('input-file'));
// Set a reasonably low default size:
$variables['element']['#attributes']['size'] = '22';
return theme_file($variables);
}
示例8: theme_file
<?php
// Fájl ellenõrzése
if (!isset($mysql_connect)) {
exit;
}
?>
<table class="body3" cellspacing="0" cellpadding="0">
<tr>
<td class="body3-title">
Mensaje del Sistema<img class="nav-icon" src="<?php
echo theme_file("images/icons/alert.png");
?>
" alt="Sistema" />
</td>
</tr>
<tr>
<td class="body3-body">
<?php
echo $site_get_message;
?>
</td>
</tr>
</table>
示例9: zeropoint_file
/**
* Set default form file input size
*/
function zeropoint_file($element)
{
$element['#size'] = $element['#size'] > 40 ? 40 : $element['#size'];
return theme_file($element);
}
示例10: theme_file
</style>
</head>
<body>
<div align="center">
<table class="site" cellspacing="0" cellpadding="0">
<tr>
<td>
<table class="header" cellspacing="0" cellpadding="0">
<tr>
<td>
<center><a href="index.php"><img src="<?php
echo theme_file("images/logo.png");
?>
" alt="<?php
echo $site_title;
?>
" /></a></center>
</td>
</tr>
</table>
<table align="right" class="body-header" cellspacing="1" cellpadding="0">
<tr>
<td>
示例11: file_check
<?php
// Datei Prüfen
if (!isset($mysql_connect)) {
exit;
}
file_check("notlogged");
?>
<table class="nav" cellspacing="0" cellpadding="0">
<tr>
<td>
<ul class="nav">
<li class="nav-title">Menü<img class="nav-icon" src="<?php
echo theme_file("images/icons/arrow.png");
?>
" alt="Menü" /></li>
<li><a href="index.php">Einloggen</a></li>
<div class="dotted-line"></div>
<li><a href="?id=reg">Neues Konto erstellen</a></li>
<div class="dotted-line"></div>
<li><a target="_blank" href="<?php
echo $site_server_site;
?>
">Startseite</a></li>
<div class="dotted-line"></div>
</ul>
</td>
</tr>
示例12: image_tag
function image_tag($filename, $extra_attr = NULL)
{
global $CONFIG;
$tag = "<img ";
if (is_array($extra_attr)) {
foreach ($extra_attr as $key => $value) {
$tag .= "{$key}=\"{$value}\" ";
}
}
$tag .= "src=\"" . $CONFIG['base_url'] . theme_file("images/{$filename}") . "\" />";
return $tag;
}
示例13: fusion_core_file
/**
* File element override
* Sets form file input max width
*/
function fusion_core_file($vars) {
$vars['element']['#size'] = ($vars['element']['#size'] > 40) ? 40 : $vars['element']['#size'];
return theme_file($vars);
}
示例14: davisonsoftware_file
/**
* Set form file input max char size
*/
function davisonsoftware_file($element)
{
$element['#size'] = $element['#size'] > 40 ? 40 : $element['#size'];
return theme_file($element);
}
示例15: theme_file
echo $wam_expansion_wotlk;
?>
">WOTLK</option><option value="<?php
echo $wam_expansion_bc;
?>
">BC</option><option value="<?php
echo $wam_expansion_classic;
?>
">Classic</option></select><font class="mini">WOLTK ist die Standart Erweiterung</font>
</td>
</tr>
<tr>
<td align="right">
<?php
echo '<img src="' . theme_file('images/number-' . $reg_security . '.png') . '" alt="" /><img src="' . theme_file('images/plus.png') . '" alt="" /><img src="' . theme_file('images/number-' . $reg_security2 . '.png') . '" alt="" /><img src="' . theme_file('images/equality.png') . '" alt="" /><img src="' . theme_file('images/question.png') . '" alt="" />
';
?>
</td>
<td align="left">
<input name="security" type="text" maxlength="2" /> <font class="mini"><a title="Ezzel a kérdéssel szûrjük ki a robotokat" href="#">[?]</a></font>
</td>
</tr>
<tr>
<td colspan="2" style="text-align:right;">
<input type="submit" value="Mehet" class="input-sbm" />
</td>
</tr>
</table>
</form>