コード例 #1
0
 function get_summary_text()
 {
     global $current_language;
     $mod_strings = return_module_language($current_language, "ZuckerListingTemplate");
     $mod_list_strings = return_mod_list_strings_language($current_language, "ZuckerListingTemplate");
     $result = "";
     $result .= ListingTemplate::get_field_display_name($this->module_name, $this->field_name);
     $result .= ", ";
     $result .= $mod_list_strings["LISTING_ORDER_TYPES"][$this->order_type];
     return $result;
 }
コード例 #2
0
 function get_summary_text()
 {
     $result = "";
     $result .= ListingTemplate::get_field_display_name($this->module_name, $this->field_name);
     $result .= " " . $this->comparator . " ";
     if ($this->value_type == "parameter") {
         $result .= "'<< " . $this->rpl->name . " >>'";
     } else {
         $result .= "'" . $this->value . "'";
     }
     return $result;
 }