How to get the values of the company object on OnAddCompany or OnEditCompany in the Event Manager?
With here a part of the company object:
Code: Select all
cd_company Object
(
[_data:cd_company:private] => Array
(
[status] => published
[id] => 17
[company_name] => Aannemersbedrijf M.J. Smits B.V.
[address] => Zietfortseweg 6A
[telephone] => 0418-552677
[website] => www.smitsgroep.nl
[details] =>
[picture_location] =>
[logo_location] => MJ Smits 127.jpg
[create_date] => 2014-12-19 13:30:05
[modified_date] => 2016-07-06 19:46:05
[latitude] => 51.7740553
[longitude] => 5.1575656
[owner_id] => -1
[hier_id] => 7
)
Code: Select all
$objCompany = $params["object"];
$status = $objCompany->_data["status"];
$id = $objCompany->_data["id"];
Thanks
Martijn