Example #1
0
			 <div class="col-xs-2">
		<label>Comments </label>
		
		</div>
		
		
			 <div class="col-xs-10">
	

<div class="row appendcomments" style="margin-top:20px;clear:both;">

<?php 
if (isset($model->id)) {
    $Criteria = new CDbCriteria();
    $Criteria->condition = "session_id={$model->id}";
    $cmts = SessionComment::model()->findAll($Criteria);
    foreach ($cmts as $cm) {
        ?>

 <div class="media mt25"><a href="#" class="pull-left"> <img alt="..." src=" <?php 
        echo Yii::app()->request->baseUrl;
        ?>
/xassets/img/avatars/images.jpg" class="media-object mn thumbnail thumbnail-sm rounded mw40"> </a><div class="media-body mb5"><h5 class="media-heading mbn"><?php 
        echo $this->getUsername($cm->users_id);
        ?>
 </h5><p> <?php 
        echo $cm->comment;
        ?>
 </p></div></div>

<?php 
Example #2
0
 /**
  * Updates a particular model.
  * If update is successful, the browser will be redirected to the 'view' page.
  * @param integer $id the ID of the model to be updated
  */
 public function actionUpdate($id)
 {
     $model = $this->loadModel($id);
     // Uncomment the following line if AJAX validation is needed
     // $this->performAjaxValidation($model);
     if (isset($_POST['Session'])) {
         $model->attributes = $_POST['Session'];
         if ($model->save()) {
             $cid = $model->id;
             foreach ($_FILES['afiles']['tmp_name'] as $key => $tmp_name) {
                 $afilesdesc = $_POST['afilesdesc'][$key];
                 $file_name = $_FILES['afiles']['name'][$key];
                 $file_tmp = $_FILES['afiles']['tmp_name'][$key];
                 if (!empty($file_name)) {
                     $nx = explode(".", $file_name);
                     $pname = $nx[0] . rand(1000, 999999999) . "." . pathinfo($file_name, PATHINFO_EXTENSION);
                     $file = Yii::app()->basePath . '/../uploads/images/' . $pname;
                     move_uploaded_file($file_tmp, $file);
                     $ca = new SessionNotes();
                     $ca->session_id = $cid;
                     $ca->url = $pname;
                     $ca->description = $afilesdesc;
                     $ca->save();
                 }
                 if (isset($_POST['comments'])) {
                     foreach ($_POST['comments'] as $cmt) {
                         $mcm = new SessionComment();
                         $mcm->comment = $cmt;
                         $mcm->users_id = Yii::app()->user->id;
                         $mcm->session_id = $cid;
                         $mcm->save();
                     }
                 }
                 if (isset($_POST['thrapist'])) {
                     foreach ($_POST['thrapist'] as $kx => $thid) {
                         $sth = new SessionTherapist();
                         $sth->therapist_id = $thid;
                         $sth->total_time = $_POST['thrapisttime'][$kx];
                         $sth->session_id = $cid;
                         $sth->save();
                     }
                 }
             }
             $this->redirect(array('index'));
         }
     }
     $this->render('update', array('model' => $model));
 }