setModuleId('sale'); return $connector; } /** @return array */ public function getProxyFieldsFromEventToConnector() { $eventData = $this->getParam('EVENT'); return array('ID' => $eventData[0], 'LID' => $this->getSiteId()); } /** * @return array */ public function getPersonalizeFields() { $eventData = $this->getParam('EVENT'); return array( 'ORDER_ID' => $eventData[0] ); } /** * @return array */ public static function getPersonalizeList() { return array( array( 'CODE' => 'ORDER_ID', 'NAME' => Loc::getMessage('sender_trigger_order_new_pers_order_id_name'), 'DESC' => Loc::getMessage('sender_trigger_order_new_pers_order_id_desc') ) ); } public function getForm() { return ''; } }