threeWeeksAgo = date('Y-m-d', $date); $key = Yii::$app->request->headers->get('uuid-key'); $this->checkAuth($key); //$headerContent = Yii::$app->request->headers->get('content-type'); //\Yii::$app->response->format = \yii\web\Response::FORMAT_XML; //if ( 'application/json' == $headerContent ) { // \Yii::$app->response->format = \yii\web\Response::FORMAT_JSON; //} return true; } public function actionExecute($user_uuid = null) { if ( null == $user_uuid ) { return false; } $accountsEntity = Accounts::find()->where(['uuid' => $user_uuid])->one(); if( null == $accountsEntity) { return false; } Yii::$app->db->createCommand('update `accounts_internal` set `last_seen_mobile` = NOW() where id in ('.$accountsEntity->id.')')->execute(); $mappingStartModel = new MappingStartModel(); $mappingStartModel->actionGetworks($accountsEntity->company); return true; } }