Zmiany pomiędzy wersją 45 and wersją 46 dla DeployerGuide/Developer

Pokaż
Ignoruj:
Data i czas:
01/08/15 11:01:13 (9 years temu)
Autor:
TS (IP: 31.174.225.154)
Komentarz:

--

Legend:

Bez zmian
Dodane
Usunięte
Zmienione
  • DeployerGuide/Developer

    v45 v46  
    626626$bean->save(); 
    627627}}} 
     628 
     629== Pobranie tekstowej wartości cechy == 
     630{{{ 
     631require_once('./classes/FeatureBox/FeaturesHelper.inc'); 
     632$featureID = 1; // id cechy (features.featid) 
     633$tblnam = 'contacts'; // nazwa tabeli bazowej (kolumna features.tblnam) zazwyczaj jest to nazwa tabeli w bazie, której dotyczą cechy wyjątkiem są dokumenty gdzie nazwa to types_of_documents_view 
     634$tbl_id = 1; // identyfikator obiektu w systemie np. dla klientów jest to contid (contacts.contid) 
     635$value = FeaturesHelper::getTextValue($featureID, $tblnam, $tbl_id); 
     636}}}