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


PHP JFactory::GetDBO方法代碼示例

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


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

示例1: getData

 protected function getData()
 {
     if ($this->element->sql) {
         $db = JFactory::GetDBO();
         $db->setQuery($this->element->sql);
         $options = $db->loadObjectList();
         return $options;
     }
     // Initialize variables.
     $options = array();
     foreach ($this->element->children() as $option) {
         // Only add <option /> elements.
         if ($option->getName() != 'option') {
             continue;
         }
         $item = new stdClass();
         $item->id = (string) $option['value'];
         $item->display = JText::_(trim((string) $option));
         $options[] = $item;
     }
     reset($options);
     return $options;
 }
開發者ID:vstorm83,項目名稱:propertease,代碼行數:23,代碼來源:fsschecklist.php

示例2: load_db

			public function load_db(){
        		global $wpdb;
		        if(class_exists('JFactory')){
		            $db =& JFactory::GetDBO();
		            if(isset($db->_resource))//J1.5
	            		$this->db = new Guardian($db->_resource);
		            else//J1.6
	            		$this->db = new Guardian($db->getConnection());
				}
				else if(!empty($wpdb) && isset($wpdb->dbh)){
					$this->db = new Guardian($wpdb->dbh);
				}
				else{
					$this->load_db_settings();
			        if(!empty($this->db_database) && !empty($this->db_host) && !empty($this->db_password) && !empty($this->db_username)){
	            		$this->db = new Guardian($this->db_host, $this->db_username, $this->db_password, $this->db_database);	
					}
				}
			}
開發者ID:realfluid,項目名稱:umbaugh,代碼行數:19,代碼來源:sl8.php


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