当前位置: 首页>>代码示例>>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;未经允许,请勿转载。