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


PHP GFForms::form_switcher方法代碼示例

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


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

示例1: form_page_title

    public static function form_page_title($form)
    {
        $editable_class = GFCommon::current_user_can_any('gravityforms_edit_forms') ? ' gform_settings_page_title_editable' : '';
        ?>
		<h1>
			<span id='gform_settings_page_title' class='gform_settings_page_title<?php 
        echo $editable_class;
        ?>
' onclick='GF_ShowEditTitle()'><?php 
        echo esc_html(rgar($form, 'title'));
        ?>
</span>
			<?php 
        GFForms::form_switcher();
        ?>
			<span class="gf_admin_page_formid">ID: <?php 
        echo absint($form['id']);
        ?>
</span>
		</h1>
		<?php 
        GFForms::edit_form_title($form);
        ?>
	<?php 
    }
開發者ID:nickwoodland,項目名稱:easysitges,代碼行數:25,代碼來源:common.php

示例2: lead_detail_page


//.........這裏部分代碼省略.........
					});
				}
			}

		</script>
		<?php 
        $editable_class = GFCommon::current_user_can_any('gravityforms_edit_forms') ? ' gform_settings_page_title_editable' : '';
        ?>
		<form method="post" id="entry_form" enctype='multipart/form-data'>
			<?php 
        wp_nonce_field('gforms_save_entry', 'gforms_save_entry');
        ?>
			<input type="hidden" name="action" id="action" value="" />
			<input type="hidden" name="screen_mode" id="screen_mode" value="<?php 
        echo esc_attr(rgpost('screen_mode'));
        ?>
" />

			<input type="hidden" name="entry_id" id="entry_id" value="<?php 
        echo absint($lead['id']);
        ?>
" />

			<div class="wrap gf_entry_wrap">
				<h2 class="gf_admin_page_title">
					<span id='gform_settings_page_title' class='gform_settings_page_title<?php 
        echo $editable_class;
        ?>
' onclick='GF_ShowEditTitle()'><?php 
        echo esc_html(rgar($form, 'title'));
        ?>
</span>
					<?php 
        GFForms::form_switcher();
        ?>
					<?php 
        if (isset($_GET['pos'])) {
            ?>
						<div class="gf_entry_detail_pagination">
							<ul>
								<li class="gf_entry_count">
									<span>entry <strong><?php 
            echo $position + 1;
            ?>
</strong> of <strong><?php 
            echo $total_count;
            ?>
</strong></span>
								</li>
								<li class="gf_entry_prev gf_entry_pagination"><?php 
            echo GFEntryDetail::entry_detail_pagination_link($prev_pos, 'Previous Entry', 'gf_entry_prev_link', 'fa fa-arrow-circle-o-left');
            ?>
</li>
								<li class="gf_entry_next gf_entry_pagination"><?php 
            echo GFEntryDetail::entry_detail_pagination_link($next_pos, 'Next Entry', 'gf_entry_next_link', 'fa fa-arrow-circle-o-right');
            ?>
</li>
							</ul>
						</div>
					<?php 
        }
        ?>

					<span class="gf_admin_page_subtitle">
						<span class="gf_admin_page_formid">ID: <?php 
        echo absint($form['id']);
開發者ID:Garth619,項目名稱:Femi9,代碼行數:67,代碼來源:entry_detail.php

示例3: form_page_title

    public static function form_page_title($form)
    {
        ?>
		<h1>
			<span id='gform_settings_page_title' class='gform_settings_page_title' onclick='GF_ShowEditTitle()'><?php 
        echo esc_html(rgar($form, 'title'));
        ?>
</span>
			<?php 
        GFForms::form_switcher();
        ?>
			<span class="gf_admin_page_formid">ID: <?php 
        echo absint($form['id']);
        ?>
</span>
		</h1>
		<?php 
        GFForms::edit_form_title($form);
        ?>
	<?php 
    }
開發者ID:arobbins,項目名稱:spellestate,代碼行數:21,代碼來源:common.php

示例4: form_page_title

    public static function form_page_title($form)
    {
        ?>
		<h1>
			<?php 
        echo esc_html(rgar($form, 'title'));
        ?>
			<span class="gf_admin_page_formid">ID: <?php 
        echo absint($form['id']);
        ?>
</span>
			<?php 
        GFForms::form_switcher();
        ?>
		</h1>
	<?php 
    }
開發者ID:SayenkoDesign,項目名稱:ividf,代碼行數:17,代碼來源:common.php


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