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


PHP GFForms::edit_form_title方法代碼示例

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


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

示例1: 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

示例2: 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

示例3: lead_detail_page


//.........這裏部分代碼省略.........
            ?>
</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']);
        ?>
</span>
					</span>

					<?php 
        $gf_entry_locking = new GFEntryLocking();
        $gf_entry_locking->lock_info($lead_id);
        ?>
				</h2>
				<?php 
        GFForms::edit_form_title($form);
        ?>

				<?php 
        GFCommon::display_dismissible_message();
        ?>

				<?php 
        RGForms::top_toolbar();
        ?>

				<div id="poststuff">
					<?php 
        wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false);
        ?>
					<?php 
        wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false);
        ?>


					<div id="post-body" class="metabox-holder columns-2">
						<div id="post-body-content">
							<?php 
        /**
         * Fires before the entry detail content is displayed
         *
         * @param array $form The Form object
         * @param array $lead The Entry object
         */
        do_action('gform_entry_detail_content_before', $form, $lead);
        if ($mode == 'view') {
            self::lead_detail_grid($form, $lead, true);
        } else {
開發者ID:Garth619,項目名稱:Femi9,代碼行數:67,代碼來源:entry_detail.php


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