当前位置: 首页>>代码示例>>PHP>>正文


PHP Language::show方法代码示例

本文整理汇总了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));
     }
 }
开发者ID:happyxlq,项目名称:pd,代码行数:7,代码来源:Messages.class.php

示例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" />
				&nbsp;&nbsp;&nbsp;&nbsp;
				<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>
开发者ID:happyxlq,项目名称:pd,代码行数:31,代码来源:Create.tpl.php

示例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>
开发者ID:sisnox,项目名称:framework,代码行数:20,代码来源:SubPage.php

示例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){

}
开发者ID:happyxlq,项目名称:pd,代码行数:31,代码来源:List.tpl.php

示例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>
开发者ID:happyxlq,项目名称:pd,代码行数:31,代码来源:List.tpl.php

示例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;
    }    
       
开发者ID:zszymczyk,项目名称:intranet,代码行数:30,代码来源:script.php

示例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>
开发者ID:sisnox,项目名称:framework,代码行数:20,代码来源:Welcome.php


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