當前位置: 首頁>>代碼示例>>PHP>>正文


PHP input::postCount方法代碼示例

本文整理匯總了PHP中input::postCount方法的典型用法代碼示例。如果您正苦於以下問題:PHP input::postCount方法的具體用法?PHP input::postCount怎麽用?PHP input::postCount使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在input的用法示例。


在下文中一共展示了input::postCount方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __

			<div class="row <?php 
echo text_helper::alternate('odd', 'even');
?>
" id="input_row_user_login_password">

				<label for="input_edit_user_login_password">
					<?php 
echo __('password', 'users');
?>
				</label>

				<div class="field">

					<?php 
view::load('system/elements/field/edit', array('prefix' => 'user_login', 'field' => array('keyword' => 'password', 'type' => 'password', 'maxlength' => 128, 'class' => 'input-xlarge'), 'value' => input::demo(0, '', false) && !input::postCount() ? array('password' => 'demo') : ''));
?>

				</div>

			</div>

			<?php 
if (uri::segment(4) == 'license' && !input::demo(0, '', false)) {
    ?>

				<div class="row <?php 
    echo text_helper::alternate('odd', 'even');
    ?>
" id="input_row_user_login_license">
開發者ID:soremi,項目名稱:tutornavi,代碼行數:29,代碼來源:login.php

示例2: array

        echo form_helper::select($name, array(1 => __('yes', 'system'), 0 => __('no', 'system')), form_helper::setSelect($name, isset($value[$name]) ? $value[$name] : ''), array('class' => 'select ' . (isset($field['class']) && $field['class'] ? $field['class'] : ''), 'style' => isset($field['style']) && $field['style'] ? $field['style'] : '', 'id' => $id));
        ?>
		<?php 
        break;
        ?>

	<?php 
    case 'location':
        ?>

		<?php 
        echo form_helper::select($name . '[country]', array('' => __('select', 'system')) + geo_helper::getCountries(), form_helper::setSelect($name . '[country]', isset($value[$name]) ? $value[$name] : ''), array('class' => 'select geo ' . (isset($field['class']) && $field['class'] ? $field['class'] : ''), 'style' => isset($field['style']) && $field['style'] ? $field['style'] : '', 'id' => $id . '_country', 'onchange' => "geo('',this.id,this.value)"));
        ?>

		<?php 
        if (!input::postCount()) {
            ?>

			<?php 
            if (isset($value[$name]) && $value[$name]) {
                ?>

				<?php 
                echo form_helper::select($name . '[state]', array('' => __('select', 'system')) + geo_helper::getStates($value[$name]), form_helper::setSelect($name . '[state]', isset($value[$name . '_state']) ? $value[$name . '_state'] : ''), array('class' => 'select geo ' . (isset($field['class']) && $field['class'] ? $field['class'] : ''), 'style' => isset($field['style']) && $field['style'] ? $field['style'] : '', 'id' => $id . '_country_state', 'onchange' => "geo('',this.id,null,this.value)"));
                ?>

				<?php 
                if (isset($value[$name . '_state']) && $value[$name . '_state']) {
                    ?>

					<?php 
開發者ID:soremi,項目名稱:tutornavi,代碼行數:31,代碼來源:edit.php


注:本文中的input::postCount方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。