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


PHP EE_Fieldtype類代碼示例

本文整理匯總了PHP中EE_Fieldtype的典型用法代碼示例。如果您正苦於以下問題:PHP EE_Fieldtype類的具體用法?PHP EE_Fieldtype怎麽用?PHP EE_Fieldtype使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: Mx_google_map_ft

 function Mx_google_map_ft()
 {
     parent::EE_Fieldtype();
     if (defined('SITE_ID') == FALSE) {
         define('SITE_ID', $this->EE->config->item('site_id'));
     }
 }
開發者ID:thomasvandoren,項目名稱:teentix-site,代碼行數:7,代碼來源:ft.mx_google_map.php

示例2: Structure_ft

 /**
  * Constructor
  *
  * @access	public
  */
 function Structure_ft()
 {
     parent::EE_Fieldtype();
     $this->sql = new Sql_structure();
     $this->site_pages = $this->sql->get_site_pages();
     $this->site_id = $this->EE->config->item('site_id');
 }
開發者ID:nigelpeters,項目名稱:css-recruitment-ee,代碼行數:12,代碼來源:ft.structure.php

示例3: Eevent_helper_ft

 function Eevent_helper_ft()
 {
     EE_Fieldtype::__construct();
     // Backwards-compatibility with pre-2.6 Localize class
     $this->format_date_fn = version_compare(APP_VER, '2.6', '>=') ? 'format_date' : 'decode_date';
     $this->string_to_timestamp_fn = version_compare(APP_VER, '2.6', '>=') ? 'string_to_timestamp' : 'convert_human_date_to_gmt';
 }
開發者ID:thomasvandoren,項目名稱:teentix-site,代碼行數:7,代碼來源:ft.eevent_helper.php

示例4: Dk_server_file_select_ft

 function Dk_server_file_select_ft()
 {
     if (version_compare(APP_VER, '2.1.4', '>')) {
         parent::__construct();
     } else {
         parent::EE_Fieldtype();
     }
 }
開發者ID:grimsmath,項目名稱:lavillafdn,代碼行數:8,代碼來源:ft.dk_server_file_select.php

示例5: __construct

 /**
  * Constructor
  * 
  * @access public
  */
 public function __construct()
 {
     parent::EE_Fieldtype();
     $this->addon_id = strtolower(substr(__CLASS__, 0, -3));
     if (!isset($this->EE->session->cache[$this->addon_id])) {
         $this->EE->session->cache[$this->addon_id]["members"] = array();
     }
 }
開發者ID:newism,項目名稱:nsm.member_select.ee_addon,代碼行數:13,代碼來源:ft.nsm_member_select.php

示例6: Google_maps_ft

 function Google_maps_ft()
 {
     if (version_compare(APP_VER, '2.1.4', '>')) {
         parent::__construct();
     } else {
         parent::EE_Fieldtype();
     }
 }
開發者ID:grimsmath,項目名稱:lavillafdn,代碼行數:8,代碼來源:ft.google_maps.php

示例7: __construct

 /**
  * Constructor function.
  *
  * @access  public
  * @return  void
  */
 public function __construct()
 {
     parent::EE_Fieldtype();
     $this->_class = get_class($this);
     $this->_lower_class = strtolower($this->_class);
     $this->_time_format = $this->EE->config->item('time_format');
     $this->postpone_saves = TRUE;
     $this->default_settings = array('date_format' => self::DROPDATE_FMT_UNIX, 'year_range' => '1900-2020', 'show_time' => '');
 }
開發者ID:thomasvandoren,項目名稱:teentix-site,代碼行數:15,代碼來源:ft.dropdate.php

示例8: Vz_members_ft

 /**
  * Fieldtype Constructor
  *
  */
 function Vz_members_ft()
 {
     EE_Fieldtype::__construct();
     // Initialize the cache
     if (!isset($this->EE->session->cache['vz_members'])) {
         $this->EE->session->cache['vz_members'] = array();
     }
     $this->cache =& $this->EE->session->cache['vz_members'];
 }
開發者ID:elivz,項目名稱:vz_members,代碼行數:13,代碼來源:ft.vz_members.php

示例9: Structure_ft

 /**
  * Constructor
  *
  * @access	public
  */
 function Structure_ft()
 {
     EE_Fieldtype::__construct();
     $this->sql = new Sql_structure();
     if (!$this->sql->module_is_installed()) {
         return FALSE;
     }
     $this->site_pages = $this->sql->get_site_pages();
     $this->site_id = $this->EE->config->item('site_id');
 }
開發者ID:kentonquatman,項目名稱:canyonwoodridge,代碼行數:15,代碼來源:ft.structure.php

示例10: Wygwam_ft

 /**
  * Fieldtype Constructor
  */
 function Wygwam_ft()
 {
     parent::EE_Fieldtype();
     $this->helper = new Wygwam_Helper();
     // -------------------------------------------
     //  Prepare Cache
     // -------------------------------------------
     if (!isset($this->EE->session->cache['wygwam'])) {
         $this->EE->session->cache['wygwam'] = array();
     }
     $this->cache =& $this->EE->session->cache['wygwam'];
 }
開發者ID:realfluid,項目名稱:umbaugh,代碼行數:15,代碼來源:ft.wygwam.php

示例11: ee

 function __construct()
 {
     ee()->lang->loadfile('fieldpack');
     parent::__construct();
     require_once PATH_THIRD . 'fieldpack/helper.php';
     $this->helper = new Fieldpack_helper();
 }
開發者ID:kentonquatman,項目名稱:iofa,代碼行數:7,代碼來源:fieldpack_fieldtype.php

示例12: strtolower

 /**
  * Constructor
  *
  * @return void
  */
 function Files_ft()
 {
     parent::__construct();
     // Create addon_name from class name
     $this->addon_name = strtolower(substr(__CLASS__, 0, -3));
     //fetch language
     $this->EE->lang->loadfile($this->addon_name);
 }
開發者ID:nathanvanbakel,項目名稱:EE_Field_Pack,代碼行數:13,代碼來源:ft.files.php

示例13:

 /**
  * Constructor
  *
  * @access	public
  */
 function __construct()
 {
     parent::__construct();
     if (session_id() == '') {
         session_start();
     }
     $this->EE->load->model('file_upload_preferences_model');
 }
開發者ID:nathanvanbakel,項目名稱:EE_Field_Pack,代碼行數:13,代碼來源:ft.uploader.php

示例14: __construct

 /**
  * Constructor
  *
  * @access public
  *
  * Calls the parent constructor
  * Sets the tiny_mce_config_path using the PATH_THRID variable
  */
 public function __construct()
 {
     parent::__construct();
     $this->tiny_mce_config_path = PATH_THIRD_THEMES . "nsm_tiny_mce/scripts/tiny_mce_config/";
     $this->field_type = $this->addon_id = strtolower(substr(__CLASS__, 0, -3));
     if (!isset($this->EE->session->cache[__CLASS__])) {
         $this->EE->session->cache[__CLASS__]['loaded_configs'] = array();
     }
 }
開發者ID:newism,項目名稱:nsm.tiny_mce.ee_addon,代碼行數:17,代碼來源:ft.nsm_tiny_mce.php

示例15: __construct

 /**
  * Fieldtype Constructor
  */
 public function __construct()
 {
     parent::__construct();
     ee()->lang->loadfile('vz_address');
     // Cache the array of country names
     $countries = array();
     foreach ($this->country_codes as $country) {
         $countries[$country] = ee()->lang->line('vz_address_' . $country);
     }
     ee()->session->set_cache(__CLASS__, 'countries', $countries);
 }
開發者ID:kentonquatman,項目名稱:iofa,代碼行數:14,代碼來源:ft.vz_address.php


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