Zmiany pomiędzy wersją 50 and wersją 51 dla DeployerGuide/Developer

Pokaż
Ignoruj:
Data i czas:
01/13/15 09:36:09 (9 years temu)
Autor:
jachtelik (IP: 79.188.124.105)
Komentarz:

--

Legend:

Bez zmian
Dodane
Usunięte
Zmienione
  • DeployerGuide/Developer

    v50 v51  
    614614 
    615615{{{ 
     616#!php 
    616617require_once(MOD_PATH.'CRegisters/beans/CRegisterEntry.inc'); 
    617618 
     
    630631 
    631632{{{ 
     633#!php 
    632634require_once(MOD_PATH.'CRegisters/services/CRegistersService.inc'); 
    633635 
     
    650652== Pobranie tekstowej wartości cechy == 
    651653{{{ 
     654#!php 
    652655require_once('./classes/FeatureBox/FeaturesHelper.inc'); 
    653656$featureID = 1; // id cechy (features.featid) 
     
    659662== Obsługa Bean'ów poprzez fasadę !MapService == 
    660663{{{ 
     664#!php 
    661665require_once(LIB_PATH.'util/MapService.inc'); 
    662666 
     
    670674 
    671675// zapisanie beana 
    672 $bean->save(); 
    673  
    674 }}} 
     676$id = $bean->save(); 
     677 
     678// $id - w zależności od klasy oznacza doc_id, prc_id, contid 
     679 
     680}}}