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


PHP EEH_Form_Fields::submit_button方法代碼示例

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


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

示例1: _e

			<a id="spco-display-event-questions-lnk" class="act-like-link smaller-text hidden hide-if-no-js float-right" >
				<?php 
_e('show&nbsp;event&nbsp;questions', 'event_espresso');
?>
			</a>
		</div>
<?php 
if (!$from_admin) {
    ?>

		<?php 
    do_action('AHEE__before_spco_whats_next_buttons', 'attendee_information', $next_step);
    ?>

		<div id="spco-attendee_information-whats-next-buttons-dv" class="spco-whats-next-buttons">
			<?php 
    echo EEH_Form_Fields::submit_button($edit_lnk_url, 'spco-go-to-step-' . $next_step, 'spco-next-step-btn', $next_step_text, 'spco-go-to-step-' . $next_step, TRUE, 'rel="attendee_information"');
    ?>
		</div>
		<!--end spco-whats-next-buttons-->
	</form>

	<?php 
    do_action('AHEE__SPCO_after_reg_step_form', 'attendee_information', $next_step);
}
//end from_admin conditional
?>
</div>
<!--end Step 1-->

開發者ID:antares-ff,項目名稱:ANTARES-Test,代碼行數:29,代碼來源:registration_page_attendee_information.template.php

示例2: do_action

	<?php 
        }
    }
}
?>

			<?php 
do_action('AHEE__before_spco_whats_next_buttons', 'payment_options', $next_step);
?>

	<?php 
if (!($revisit && ($events_requiring_pre_approval != '' || $sold_out_events != ''))) {
    ?>
			<div id="spco-payment_options-whats-next-buttons-dv" class="spco-whats-next-buttons">
				<?php 
    echo EEH_Form_Fields::submit_button($edit_lnk_url, 'spco-go-to-step-' . $next_step, 'spco-next-step-btn', $next_step_text, 'spco-go-to-step-' . $next_step, TRUE, 'rel="payment_options"');
    ?>
			</div>
			<!--end spco-whats-next-buttons-->
	<?php 
}
?>

		</form>

		<?php 
do_action('AHEE__SPCO_after_reg_step_form', 'payment_options', $next_step);
?>

	</div>
	<!--end Step 2-->
開發者ID:antares-ff,項目名稱:ANTARES-Test,代碼行數:31,代碼來源:registration_page_payment_options.template.php


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