Beispiel #1
0
 public function afterSave()
 {
     if ($client = $this->modx->getObject('PaymentSystemClient', $this->object->get('id'))) {
         /* смена стутуса  */
         $status = $this->getProperty('status');
         $this->modx->log(1, print_r($this->getProperties(), 1));
     }
     return parent::afterSave();
 }
Beispiel #2
0
 public function afterSave()
 {
     if ($client = $this->modx->getObject('MlmSystemClient', array('id' => $this->object->get('id')))) {
         $clientStatus = $this->getProperty('status', $client->getStatusCreate());
         $this->MlmSystem->Tools->changeClientStatus($client, $clientStatus);
         $parent = $this->getProperty('parent', $this->MlmSystem->getOption('referrer_default_client', null, 0));
         if (!empty($parent)) {
             $this->MlmSystem->Tools->changeClientParent($client, $parent);
         }
     }
     return parent::afterSave();
 }