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


PHP GFEntryList::all_leads_page方法代碼示例

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


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

示例1: all_leads_page

 public static function all_leads_page()
 {
     if (self::maybe_display_installation_wizard()) {
         return;
     }
     $view = rgget('view');
     $lead_id = rgget('lid');
     if ($view == 'entry' && (rgget('lid') || !rgblank(rgget('pos')))) {
         require_once GFCommon::get_base_path() . '/entry_detail.php';
         GFEntryDetail::lead_detail_page();
     } else {
         if ($view == 'entries' || empty($view)) {
             require_once GFCommon::get_base_path() . '/entry_list.php';
             GFEntryList::all_leads_page();
         } else {
             $form_id = rgget('id');
             /**
              * Fires when viewing entries of a certain form
              *
              */
             do_action('gform_entries_view', $view, $form_id, $lead_id);
         }
     }
 }
開發者ID:kidaak,項目名稱:gravityforms,代碼行數:24,代碼來源:gravityforms.php

示例2: all_leads_page

 public static function all_leads_page()
 {
     $view = rgget('view');
     $lead_id = rgget('lid');
     if ($view == 'entry' && (rgget('lid') || !rgblank(rgget('pos')))) {
         require_once GFCommon::get_base_path() . '/entry_detail.php';
         GFEntryDetail::lead_detail_page();
     } else {
         if ($view == 'entries' || empty($view)) {
             require_once GFCommon::get_base_path() . '/entry_list.php';
             GFEntryList::all_leads_page();
         } else {
             $form_id = rgget('id');
             do_action('gform_entries_view', $view, $form_id, $lead_id);
         }
     }
 }
開發者ID:healthcommcore,項目名稱:osnap,代碼行數:17,代碼來源:gravityforms.php

示例3: all_leads_page

 public static function all_leads_page()
 {
     //displaying lead detail page if lead id is in the query string
     $lead_id = RGForms::get("lid");
     if (!empty($lead_id)) {
         require_once GFCommon::get_base_path() . "/entry_detail.php";
         GFEntryDetail::lead_detail_page();
     } else {
         require_once GFCommon::get_base_path() . "/entry_list.php";
         GFEntryList::all_leads_page();
     }
 }
開發者ID:Blueprint-Marketing,項目名稱:interoccupy.net,代碼行數:12,代碼來源:gravityforms.php

示例4: all_leads_page

 public static function all_leads_page()
 {
     //displaying lead detail page if lead id is in the query string
     if (rgget('lid') || !rgblank(rgget('pos'))) {
         require_once GFCommon::get_base_path() . "/entry_detail.php";
         GFEntryDetail::lead_detail_page();
     } else {
         require_once GFCommon::get_base_path() . "/entry_list.php";
         GFEntryList::all_leads_page();
     }
 }
開發者ID:pwillems,項目名稱:mimosa-contents,代碼行數:11,代碼來源:gravityforms.php

示例5: entries_list

function entries_list()
{
    $view = rgget('view');
    $lead_id = rgget('lid');
    if ($view == 'mfentry' && (rgget('lid') || !rgblank(rgget('pos')))) {
        //require_once( GFCommon::get_base_path() . '/entry_detail.php' );
        include_once TEMPLATEPATH . '/classes/entry_detail_makerfaire.php';
        GFEntryDetail::lead_detail_page();
    } else {
        if ($view == 'entries' || empty($view)) {
            include_once TEMPLATEPATH . '/classes/entry_list_makerfaire.php';
            if (!class_exists('GFEntryList')) {
                require_once GFCommon::get_base_path() . "/entry_list.php";
            }
            GFEntryList::all_leads_page();
        } else {
            $form_id = rgget('id');
            do_action('gform_entries_view', $view, $form_id, $lead_id);
        }
    }
}
開發者ID:hansstam,項目名稱:makerfaire,代碼行數:21,代碼來源:functions.php


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