当前位置: 首页>>代码示例>>PHP>>正文


PHP Property::get_property_list方法代码示例

本文整理汇总了PHP中Property::get_property_list方法的典型用法代码示例。如果您正苦于以下问题:PHP Property::get_property_list方法的具体用法?PHP Property::get_property_list怎么用?PHP Property::get_property_list使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Property的用法示例。


在下文中一共展示了Property::get_property_list方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: filtered_search_by_mixed_criteria_csv

 function filtered_search_by_mixed_criteria_csv(&$output_data, &$xslt_file = "")
 {
     $recordsearcher = new RecordSearcher();
     //echo microtime()."RecordIniFacade: filtered_search_by_mixed_criteria;  before executing ".'$recordsearcher->filtered_search_by_mixed_criteria();'." <br>";
     $eids = $recordsearcher->filtered_search_by_mixed_criteria(false);
     $_REQUEST['eids'] = $eids;
     if (!isset($_REQUEST['type_id'])) {
         $_REQUEST['type_id'] = $_SESSION['type_id'];
     }
     //$this->initializeRecordSet($xml_string, $xslt_file);
     //initialize MyEDB_Matrix with prop ids to be column names
     //get Property::get_property_list
     $property_list = Property::get_property_list();
     //print_r($property_list); echo "helloo";
     $myedb_matrix = new MyEDB_Matrix($property_list);
     //do loop through eids creating associative array of resulting recs
     foreach ($eids as $eid) {
         $type_id = RecordsSys_EntityManagementSystems::get_type_id($eid);
         //can't rely on request type_id, because search results may have generic type_id
         $one_row_rec = new One_Row_Record($eid, $type_id);
         $one_row_rec->exclude_properties = array(26, 27);
         $one_row_rec->setup();
         //add $one_row_rec to MyEDB_Matrix
         $myedb_matrix->add_one_row_record($one_row_rec);
         //add $complete_prop_matrix to $eid_recs
     }
     $myedb_matrix->finalize_matrix();
     $output_data = $myedb_matrix->get_matrix();
 }
开发者ID:awgtek,项目名称:myedb,代码行数:29,代码来源:RecordIniFacade.php

示例2: get_property_list

 static function get_property_list()
 {
     return Property::get_property_list();
 }
开发者ID:awgtek,项目名称:myedb,代码行数:4,代码来源:EntityMgmt_Facade.php


注:本文中的Property::get_property_list方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。