示例#1
0
 public function actionIndex()
 {
     /**
      * fetch a count of customers
      */
     $custCount = Customers::find()->count();
     /**
      * fetch the orders for today
      */
     $orders = Orderstatuses::find()->where('StatusOrder = 1')->count();
     /**
      * fetch the visitor count from the ebsite
      */
     $vistors = 0;
     /**
      * fetch the profit year to date
      */
     $profitytd = Orderdetails::find()->all();
     /**
      * fetch todays profit
      */
     $todayprofit = Orders::find()->with(['orderdetails', 'orderStatus'])->where('OrderStatusId = 1')->all();
     /**
      * fetch the count of active campaigns
      */
     $campaigncount = Campaigns::find()->where('EndedOn = NULL')->count();
     /**
      * count of queued emails
      */
     $countQueued = Queuedemails::find()->where('SentOn <> NULL')->count();
     return $this->render('index', ['custCount' => $custCount, 'orders' => $orders, 'profitytd' => $profitytd, 'todayprofit' => $todayprofit, 'campaigncount' => $campaigncount, 'countQueued' => $countQueued]);
 }
示例#2
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Queuedemails::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     if (!($this->load($params) && $this->validate())) {
         return $dataProvider;
     }
     $query->andFilterWhere(['QueuedEmailID' => $this->QueuedEmailID, 'CustomerId' => $this->CustomerId, 'Priority' => $this->Priority, 'SendTries' => $this->SendTries, 'SentOn' => $this->SentOn, 'created_by' => $this->created_by, 'LastUpdatedBy' => $this->LastUpdatedBy, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at, 'deleted_at' => $this->deleted_at]);
     $query->andFilterWhere(['like', 'SendingTo', $this->SendingTo])->andFilterWhere(['like', 'ToName', $this->ToName])->andFilterWhere(['like', 'SendingFrom', $this->SendingFrom])->andFilterWhere(['like', 'FromName', $this->FromName])->andFilterWhere(['like', 'Cc', $this->Cc])->andFilterWhere(['like', 'Bcc', $this->Bcc])->andFilterWhere(['like', 'Subject', $this->Subject])->andFilterWhere(['like', 'Body', $this->Body])->andFilterWhere(['like', 'Comment', $this->Comment]);
     return $dataProvider;
 }
 /**
  * Finds the Queuedemails model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Queuedemails the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Queuedemails::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }