本文整理汇总了PHP中Language::show方法的典型用法代码示例。如果您正苦于以下问题:PHP Language::show方法的具体用法?PHP Language::show怎么用?PHP Language::show使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Language
的用法示例。
在下文中一共展示了Language::show方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: showAllUserMessage
public static function showAllUserMessage()
{
$template = "%s";
foreach (self::$_userMessages as $messageCode) {
printf($template, Language::show($messageCode));
}
}
示例2:
<?php
echo $select;
Errors::show("FATHER_ID");
?>
</td>
</tr>
<!-- Field end -->
<tr>
<td height="25" align="center" valign="center" class="tdblue" colspan="2">
<!-- action blocks start -->
<input type="submit" value="<?php
Language::show("COMMON.SAVE.LABEL");
?>
" class="submit" />
<input type="button" onclick="location.href='<?php
echo zee::url(project, "list");
?>
'" value="<?php
Language::show("COMMON.BACK.LABEL");
?>
" class="submit" />
<!-- action blocks end -->
</td>
</tr><!-- fields end -->
</table>
</td>
</tr>
<!-- Form block end -->
</form>
</div></div>
示例3:
<div class="page-header">
<h1><?php
echo $title;
?>
</h1>
</div>
<p><?php
echo $welcomeMessage;
?>
</p>
<a class="btn btn-md btn-success" href="<?php
echo DIR;
?>
">
<?php
echo Language::show('backHome', 'Welcome');
?>
</a>
示例4: handler
</form>
</tbody>
</table>
</div>
<div style="display: none; position: fixed; overflow-y: scroll; overflow-x: hidden;" id="tooltipbox">
</div>
<div style="display: none; position: fixed;" id="paidanbox">
</div>
<p style="display:none;"><?php
Language::show("COMMON.SELECTED_ACTION.LABEL");
?>
:
<select id="selectedActions" name="selectedActions" onchange="selectedAction('list_orders_ids[]', this);">
<option value="" selected><?php
Language::show("COMMON.SELECT.LABEL");
?>
:</option>
<option value="index.php?module=orders&action=delete_selected">DELETE</option>
</select> </p>
<p> <?php
echo $listPageHelper->pageStat();
echo $listPageHelper->jumpSelect();
?>
</p>
</div>
<script language="javascript">
function handler(tp){
}
示例5:
<td align="left" class="smalltdrow2">
<?php
echo $outUser->username;
?>
</td>
<td align="left" class="smalltdrow2">
<?php
echo $outUser->realname;
?>
</td>
<td align="center" class="smalltdrow2">
<a href="index.php?module=user&action=update&update_user_id=<?php
echo $outUser->user_id;
?>
"><?php
Language::show("COMMON.EDIT.LABEL");
?>
</a> <a onclick="if(confirm('确认删除?'))location.href='index.php?module=user&action=delete&delete_user_id=<?php
echo $outUser->user_id;
?>
'" href="javascript:void(0);">删除</a>
</td>
</tr>
<?php
}
}
?>
</form>
<tr>
示例6: AvatarExist
"top": top,
"left": ($(window).width() / 2) - (width / 2)
}
}
$(function() {
// Infinite Ajax Scroll configuration
$.ias({
container : '.timeline-container', // main container where data goes to append
item: '.timeline-row', // single items
pagination: '.pagination', // page navigation
next: '.pagination a', // next page selector
loader: '<i class="icon-spinner2 spinner"></i>', // loading gif
trigger:"<?php
echo Language::show('more-items', 'blog');
?>
",
triggerPageThreshold: 3 // show load more if scroll more than this
});
// Check if avatar exist
function AvatarExist(url)
{
var http = new XMLHttpRequest();
http.open('HEAD', url, false);
http.send();
return http.status!=404;
}
示例7:
<div class="page-header">
<h1><?php
echo $title;
?>
</h1>
</div>
<p><?php
echo $welcomeMessage;
?>
</p>
<a class="btn btn-md btn-success" href="<?php
echo DIR;
?>
subpage">
<?php
echo Language::show('openSubPage', 'Welcome');
?>
</a>