public function getNamaPenghargaanAttribute()
 {
     $value = $this->attributes['id_master_penghargaan'];
     $data = Penghargaan::find($value);
     if ($data) {
         return $data->nama_penghargaan;
     }
     return '-';
 }
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     //
     $penghargaan = Penghargaan::find($id);
     if ($penghargaan->delete()) {
         return Response::json(array('success' => TRUE));
     }
 }
 /**
  * Returns the data model based on the primary key given in the GET variable.
  * If the data model is not found, an HTTP exception will be raised.
  * @param integer $id the ID of the model to be loaded
  * @return Penghargaan the loaded model
  * @throws CHttpException
  */
 public function loadModel($id)
 {
     $model = Penghargaan::model()->findByPk($id);
     if ($model === null) {
         throw new CHttpException(404, 'The requested page does not exist.');
     }
     return $model;
 }
Esempio n. 4
0
echo $form->errorSummary($model);
?>

	<?php 
$model->id_pegawai = $id;
?>
	<?php 
echo $form->hiddenField($model, 'id_pegawai', array('class' => 'input-block-level'));
?>

	<div class="row">
		<?php 
echo $form->labelEx($model, 'id_master_penghargaan');
?>
		<?php 
$this->widget('ext.chosen.Chosen', array('name' => 'DataPenghargaan[id_master_penghargaan]', 'value' => $model->id_master_penghargaan, 'data' => array('' => 'Semua') + CHtml::listData(Penghargaan::model()->findAll(), 'id_penghargaan', 'nama_penghargaan')));
?>
		<?php 
echo $form->error($model, 'id_master_penghargaan');
?>
	</div>
	<br>

	<div class="row">
		<?php 
echo $form->labelEx($model, 'uraian');
?>
		<?php 
echo $form->textArea($model, 'uraian', array('rows' => 6, 'cols' => 50, 'class' => 'input-block-level'));
?>
		<?php 
 /**
  * Show the form for creating a new resource.
  *
  * @return Response
  */
 public function create()
 {
     //
     $data = array('penghargaan' => Penghargaan::DropdownPenghargaan());
     return Response::json($data);
 }