コード例 #1
0
 public function actionGetAnswersOfQuiz()
 {
     $request = Yii::app()->request;
     try {
         $quiz_id = StringHelper::filterString($request->getQuery('quiz_id'));
         $data = QuizAnswer::model()->findAllByAttributes(array('quiz_id' => $quiz_id));
         ResponseHelper::JsonReturnSuccess($data);
     } catch (Exception $ex) {
         ResponseHelper::JsonReturnError($ex->getMessage());
     }
 }
コード例 #2
0
ファイル: Quiz.php プロジェクト: triquanta/libizi
 public static function createFromData(\stdClass $data)
 {
     $quiz = new static();
     $quiz->question = $data->question;
     foreach ($data->answers as $answerData) {
         $quiz->answers[] = QuizAnswer::createFromData($answerData);
     }
     if (isset($data->comment)) {
         $quiz->comment = $data->comment;
     }
     return $quiz;
 }
コード例 #3
0
 public function overwriteForm($return, $returnfull)
 {
     $return = parent::overwriteForm($return, $returnfull);
     $p = new QuizUlangan();
     //$p->default_read_coloms = "ID,post_title";
     $arrPage = $p->getAll();
     $arrNe = array();
     foreach ($arrPage as $pp) {
         $arrNe[$pp->ulangan_id] = $pp->ulangan_id . " - " . $pp->ulangan_name;
     }
     $ans = new QuizAnswer();
     $arrAns = $ans->getWhere('answer_qid = ' . $this->qid);
     //$ans->getAll();// $ans->getWhere('answer_qid = '.$this->qid);
     $arrNe2 = array();
     foreach ($arrAns as $pp) {
         $arrNe2[$pp->answer_id] = $pp->answer_id . " - " . $pp->answer_text;
     }
     //pr($arrAns);
     $return['q_image'] = new \Leap\View\InputFoto("foto", "q_image", $this->q_image);
     $return['q_aktif'] = new Leap\View\InputSelect($this->arrayYesNO, "q_aktif", "q_aktif", $this->q_aktif);
     $return['q_ulangan_id'] = new Leap\View\InputSelect($arrNe, "q_ulangan_id", "q_ulangan_id", $this->q_ulangan_id);
     $return['q_correct_answer_id'] = new Leap\View\InputSelect($arrNe2, "q_correct_answer_id", "q_correct_answer_id", $this->q_correct_answer_id);
     return $return;
 }
コード例 #4
0
 public function t()
 {
     $l = new QuizAnswer();
     $l->printColumlistAsAttributes();
 }
コード例 #5
0
 /**
  * Adds an object to the instance pool.
  *
  * Propel keeps cached copies of objects in an instance pool when they are retrieved
  * from the database.  In some cases -- especially when you override doSelect*()
  * methods in your stub classes -- you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by doSelect*()
  * and retrieveByPK*() calls.
  *
  * @param      QuizAnswer $value A QuizAnswer object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool(QuizAnswer $obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = serialize(array((string) $obj->getId(), (string) $obj->getQuestionId()));
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }
コード例 #6
0
ファイル: P.php プロジェクト: CapsuleCorpIndonesia/biji_katak
 function hapus_ul($args)
 {
     list($id) = $args;
     if (!isset($id) || $id < 1) {
         die('no proper id');
     }
     $ul = new QuizUlangan();
     $ul->getByID($id);
     if ($ul->ulangan_creator_id == Account::getMyID() && !$ul->ulangan_aktif) {
         $ul->delete($id);
         //$ul->ulangan_aktif = 0;
         //$ul->save();
         $q = new QuizQuestion();
         $arr = $q->getWhere("q_ulangan_id = '{$id}'");
         foreach ($arr as $qq) {
             $q->delete($qq->qid);
             $a = new QuizAnswer();
             $arr2 = $a->getWhere("answer_qid = '{$qq->qid}'");
             foreach ($arr2 as $aa) {
                 $a->delete($aa->answer_id);
             }
         }
     }
 }
コード例 #7
0
 function saveQ()
 {
     //pr($_POST);
     $myid = 0;
     $qid = addslashes($_POST['qid']);
     $q = new QuizQuestion();
     if ($qid != "" && $qid != 0) {
         $q->getByID($qid);
         $myid = $q->qid;
     }
     $q->q_title = addslashes($_POST['q_title']);
     $q->q_image = addslashes($_POST['q_img']);
     $q->q_ulangan_id = addslashes($_POST['ul_id']);
     $q->q_aktif = addslashes($_POST['q_aktif']);
     $scc = $q->save();
     //echo "Sukses save question : ".$scc." \n<br>";
     if ($scc) {
         if ($myid == 0) {
             $myid = $scc;
         }
         //echo "Sukses question ID : ".$myid." \n<br>";
         echo "Penyimpanan Sukses";
         $a = new QuizAnswer();
         $arrAns = $a->getWhere("answer_qid = '{$myid}'");
         foreach ($arrAns as $n) {
             $a->delete($n->answer_id);
         }
         //sekarang save baru
         for ($x = 0; $x < 4; $x++) {
             $checked = 0;
             if ($x == $_POST['radio']) {
                 $checked = 1;
             }
             $ans = addslashes($_POST['answer_' . $x]);
             $ans_img = addslashes($_POST['answer_' . $x . '_img']);
             $an = new QuizAnswer();
             $an->answer_qid = $myid;
             $an->answer_image = $ans_img;
             $an->answer_text = $ans;
             $an_id = $an->save();
             //echo "Sukses save answer $x : ".$an_id." \n<br>";
             if ($checked) {
                 $q1 = new QuizQuestion();
                 $q1->getByID($myid);
                 $q1->q_correct_answer_id = $an_id;
                 $q1->load = 1;
                 $q1->save();
             }
         }
     }
     //echo "end";
     exit;
 }
コード例 #8
0
    function id($args)
    {
        list($id, $name, $res, $res_id) = $args;
        $fb_page = "https://www.facebook.com/pages/Stage-City/1076705655676385";
        if ($id == 0) {
            //$ul = new QuizUlangan();
            //$arrUl = $ul->getWhere("")
            header("Location:" . _SPPATH . "Kl/tk");
            exit;
        }
        $ul = new QuizUlangan();
        $ul->getByID($id);
        //tambahan buat user created
        $acc = new Account();
        $ucreate = 0;
        if ($ul->ulangan_creator_id != 0) {
            //TODO cek untuk preview
            $acc->getByID($ul->ulangan_creator_id);
            $ucreate = 1;
        }
        if ($ul->ulangan_aktif != 1 || $ul->ulangan_id == "") {
            Redirect::p404();
        }
        $l = new QuizLevel();
        $l->getByID($ul->ulangan_level_id);
        $point = QuizPoints::myPoints();
        $boleh = 0;
        if ($point >= $l->level_limit) {
            $boleh = 1;
        }
        $actual_link = _BPATH . "ul/id/" . $id . "/" . urlencode($name);
        //pr($ul);
        //ambil next ulangan
        $arrUl = $ul->getWhere("ulangan_level_id = '{$ul->ulangan_level_id}' AND ulangan_aktif =1 AND ulangan_id > {$ul->ulangan_id} LIMIT 0,1");
        $next = $arrUl[0];
        ?>
<style>
    #calc,#resultcontainer{
        background-color: #efefef;
        padding: 20px;
    }
    #detail{
        text-align: center;
        
    }
    .quiz_des{
        text-align: center;
        font-size: 15px;
        padding-bottom: 20px;
    }
    #comment{
        padding-top: 50px;
    }
    #fbgroup{
        padding-bottom: 20px;
    }
    .subtext{
        font-size: 14px;
        text-align: center;
    }
    .aftersales{
        text-align: center;
        padding: 30px;
    }
    #resultcontainer{
        text-align: center;
    }
    .subtextres{
        font-size:18px;
        padding: 20px;
    }
    .moremenu{
        padding-bottom: 40px;
        padding-top: 40px;
    }
    .moremenua{
        text-align: center;
        padding-bottom: 20px;
    }
    .fb-like2 {
    transform: scale(1.8);
    -ms-transform: scale(1.8);
    -webkit-transform: scale(1.8);
    -o-transform: scale(1.8);
    -moz-transform: scale(1.8);
}
.question{
    
}
#nilaiku{
    font-size: 80px;
}
.iklan{
    position: fixed;
    z-index: 10;
    text-align: center;
    width: 100%;
    height: 100%;
    left: 0px;
    top:0px;
    padding-top: 80px;
    background-color: rgba(0,0,0,0.5);
}
.iklan button{
    margin-top: 20px;
}
</style>

<div class="col-md-8 col-md-offset-2">
    
    <div id="fbgroup" style="margin-top: 30px;">
        kembali ke <a href="<?php 
        echo _SPPATH;
        ?>
kl/tk/<?php 
        echo $l->level_id;
        ?>
"><?php 
        echo $l->level_name;
        ?>
</a>
        <div style="float: right;">
        <div class="fb-like" data-href="<?php 
        echo $actual_link;
        ?>
" data-layout="button_count" data-action="like" data-show-faces="true" data-share="true"></div>
        </div>
    </div>
    
    <div id="detail">
        <?php 
        if (!$boleh && Auth::isLogged()) {
            ?>
        <h3 style="padding-bottom: 20px;">
            Total Nilai Anda belum cukup untuk mengerjakan ujian ini. <br>
            Harap kerjakan ujian pada level sebelumnya.
        </h3>
        <?php 
        }
        ?>
        <?php 
        if (!$boleh && !Auth::isLogged()) {
            ?>
        <h3 style="padding-bottom: 20px;">Harap Login untuk dapat mengerjakan ujian</h3> 
        <button onclick="document.location='<?php 
            echo _SPPATH;
            ?>
register';" style="min-width: 250px; background-color: #f0373c; border-color: #f0373c; margin-bottom: 30px;" class="btn btn-primary btn-lg">Masuk</button>
        <?php 
        }
        ?>
        
        <img class="wow tada"  <?php 
        if ($boleh) {
            ?>
style="cursor:pointer;" onclick="$('#detail').hide();$('#calc').show();$('#question_0').show();"<?php 
        }
        ?>
 <?php 
        if ($ucreate) {
            ?>
width="100%"<?php 
        } else {
            ?>
width="100%"<?php 
        }
        ?>
 src="<?php 
        echo _SPPATH . _PHOTOURL . $ul->ulangan_image;
        ?>
">
        
        <div style="display:none;">
        <h1><?php 
        echo $ul->ulangan_name;
        ?>
</h1>
        <div class="quiz_des"><?php 
        echo $ul->ulangan_descr;
        ?>
</div>
        
        <?php 
        if ($boleh) {
            ?>
        <button onclick="$('#detail').hide();$('#calc').show();$('#question_0').show();" style="min-width: 250px;" class="btn btn-primary btn-lg">Start</button>
        <?php 
        } else {
            ?>
        <h1>Total Nilai kamu tidak cukup untuk mengerjakan ujian ini. 
            Harap kerjakan ujian pada level sebelumnya.</h1>
        <?php 
            if (!Auth::isLogged()) {
                ?>
        <h1>Tolong Log-In</h1> 
         <button onclick="document.location='<?php 
                echo _SPPATH;
                ?>
register';" style="min-width: 250px;" class="btn btn-primary btn-lg">Masuk</button>
       
                <?php 
            }
        }
        ?>
        </div>
    </div>
    <?php 
        $q = new QuizQuestion();
        $arrQ = $q->getWhere("q_ulangan_id = '{$ul->ulangan_id}' AND q_aktif = 1");
        shuffle($arrQ);
        //pr($arrQ);
        $jumlah_question = $ul->ulangan_jumlah_soal;
        $jumlah_question_arr = $jumlah_question - 1;
        if (count($arrQ) < $jumlah_question) {
            echo "<h1>Tambah Jumlah Soal</h1>";
            die('err qty not enough');
        }
        ?>
    <div id="calc" style="display: none;">
        
        <?php 
        $selected_questions = array();
        //echo $jumlah_question;
        for ($x = 0; $x < $jumlah_question; $x++) {
            /*$ct = rand(0,count($arrQ)-1);
              //echo $ct;
              $selected_questions[] = $arrQ[$ct];
              unset($arrQ[$ct]);
              $arrQ = array_values($arrQ);*/
            $pop = array_pop($arrQ);
            //echo $pop->qid."<br>";
            $selected_questions[] = $pop;
        }
        //pr($selected_questions);
        foreach ($selected_questions as $nm => $q) {
            $ans = new QuizAnswer();
            $arrAns = $ans->getWhere("answer_qid = '{$q->qid}'");
            shuffle($arrAns);
            if ($nm == 5) {
                //pasang iklan
                $iklan = new QuizIklan();
                $arriklan = $iklan->getWhere("iklan_aktif = 1");
                $random = rand(0, count($arriklan) - 1);
                $pilihan = $arriklan[$random];
                ?>
        <div class="iklan" style="display:none;" id="iklanku">
            <div class="container">
                <div class="col-md-8 col-md-offset-2">
                    <div style="background-color: white; padding: 20px;">
                        <?php 
                echo stripslashes($pilihan->iklan_text);
                ?>
                        <button onclick="$('#iklanku').hide();" class="btn btn-default">lanjutkan</button>
                    </div>
                </div>
            </div>
        </div>  
                    
                <?php 
            }
            ?>
        <div class="question" id="question_<?php 
            echo $nm;
            ?>
" style="display:none;">
            <?php 
            if ($q->q_title != "") {
                ?>
            <div class="text-center">
                <h3 class="wow"><?php 
                echo $q->q_title;
                ?>
</h3>
            </div>
            <?php 
            }
            ?>
            <?php 
            if ($q->q_image != "") {
                ?>
            <div class="col-md-6 col-md-offset-3">
            <img src="<?php 
                echo _SPPATH . _PHOTOURL . $q->q_image;
                ?>
" width="100%">
            </div>
            <div class="clearfix"></div>
            <?php 
            }
            ?>
            <div class="answer" style="margin-top: 20px;">
                <div class="col-md-6 col-md-offset-3">
                <?php 
            foreach ($arrAns as $ans) {
                ?>
                <div class=" text-center">
                    <div style="padding:5px; padding-left: 0px; padding-right: 0px;">
                    <button onclick="saveAnser('<?php 
                echo $q->qid;
                ?>
','<?php 
                echo $ans->answer_id;
                ?>
',<?php 
                echo $nm;
                ?>
);<?php 
                if ($nm == 5) {
                    ?>
$('#iklanku').show();<?php 
                }
                ?>
" style="width: 100%; padding-top: 20px; padding-bottom: 20px;" class="btn btn-default"><?php 
                echo $ans->answer_text;
                ?>
</button>
                    <?php 
                /* if($q->q_correct_answer_id == $ans->answer_id){?>x<?}*/
                ?>
                    </div>
                <!--<input type="radio" name="radio_<?php 
                echo $q->qid;
                ?>
"> <?php 
                echo $ans->answer_text;
                ?>
-->
                </div>
                <?php 
            }
            ?>
                </div>
            </div>
            <div class="clearfix"></div>
            <!-- <button onclick="$('#question_<?php 
            echo $nm;
            ?>
').hide();<?php 
            if ($nm < $jumlah_question_arr) {
                ?>
$('#question_<?php 
                echo $nm + 1;
                ?>
').show();<?php 
            } else {
                ?>
hitungRes();<?php 
            }
            ?>
" style="min-width: 250px;" class="btn btn-primary btn-lg">Next</button>
 -->
        </div>
        <?php 
        }
        ?>
        <div class="clearfix"></div>
    </div>    
    <div id="resultcontainer" style="display:none; padding-top: 20px !important;"> 
        <div class="wow tada" id="naikLevel" style="display: none;text-align: center; background-color: red; color:white;">
            <h1 style="padding: 30px;color:white;" >Selamat!! Kamu naik kelas!!</h1>
        </div>
        <div id="resulting" style="display:none;"></div>
        
        <div id="saved"></div>
        
        <div id="moremenu" style="display:none;">
            <div class="moremenu">
                <div class="moremenua col-md-3"><a href="#more">take other test</a></div>
                <div class="moremenua col-md-3">
                    <div class="fb-like" data-href="<?php 
        echo $fb_page;
        ?>
" data-layout="button" data-action="like" data-show-faces="false" data-share="false"></div>
                </div>
                <div class="moremenua col-md-3"><a target="_blank" href="<?php 
        echo _SPPATH;
        ?>
how_we_do_it">how we do it</a></div>
                <div class="moremenua col-md-3"><a href="#comment">leave a comment</a></div>
            </div>
        </div>
    </div>
    
    <div id="ulnext" style="text-align: right; padding-top: 20px;display: none;">
        <?php 
        if (isset($next->ulangan_id) && $next->ulangan_id != "") {
            $nurl = _SPPATH . "ul/id/" . $next->ulangan_id . "/" . $next->ulangan_name;
            $ntext = "lanjut ke ulangan berikutnya";
        } else {
            $nurl = _SPPATH . "kl/tk/" . $l->level_id;
            $ntext = "kembali ke kelas";
        }
        ?>
        <button onclick="document.location='<?php 
        echo $nurl;
        ?>
';" class="btn btn-default btn-sm"><?php 
        echo $ntext;
        ?>
</button>
    </div>
    
    <?php 
        if ($ucreate) {
            ?>
    <div class="ucreate" style="text-align: center; background-color: #efefef; margin-top: 10px; padding: 10px; ">
    <h1 onclick="$('#detail').hide();$('#calc').show();$('#question_0').show();"><?php 
            echo $ul->ulangan_name;
            ?>
</h1>
        <div onclick="$('#detail').hide();$('#calc').show();$('#question_0').show();" class="quiz_des" style="font-style: italic;"><?php 
            echo $ul->ulangan_descr;
            ?>
</div>
        <div class="oleh" >disunting oleh<br><br>
            <img src="//graph.facebook.com/<?php 
            echo $acc->admin_fb_id;
            ?>
/picture?type=small">
            <br><a href="<?php 
            echo _SPPATH;
            ?>
p/user/<?php 
            echo $acc->admin_id;
            ?>
"><?php 
            echo $acc->admin_name;
            ?>
</a>
            <br>untuk <b>INDONESIA</b>
        </div>
    </div>
        <?php 
        }
        ?>
        <div class="clearfix" style="padding: 20px;"></div>
    <script>
        var jml = <?php 
        echo $jumlah_question_arr;
        ?>
;
        var arrJwb = [];
        function saveAnser(qid,aid,nr){
            var com = {qid : qid,aid : aid};
            arrJwb.push(com);
            $('#question_'+nr).hide();
            if(nr<jml){
                var nex = nr+1;
                $('#question_'+nex).show();
            }
            else{
                hitungRes();
            }
        }
        function hitungRes(){
            $('#resultcontainer').show();
            //$('#moremenu').show();
            $('#resulting').show();
            $('#calc').hide();
            
            console.log(arrJwb);
            $.post('<?php 
        echo _SPPATH;
        ?>
Ul/hitung',{jwb : arrJwb,qid:'<?php 
        echo $id;
        ?>
'},function(data){
              //alert(data);  
              //$('#nilaiku').html(data.points);
                var badge = data.badge;
                var poin = data.points;
                // modify history
                var obj = {'lid': '<?php 
        echo $id;
        ?>
', 'url': '<?php 
        echo $actual_link;
        ?>
'};
                var title = '<?php 
        echo $id;
        ?>
';
                var url = '<?php 
        echo _SPPATH . "ul/id/" . $id . "/" . urlencode($name);
        ?>
/result/'+data.points;
                history.pushState(obj, title, url);
            
                var text1 = "<img class='wow tada' width='100%' src='"+badge+"'>";
                var text2 = "<h3 class='wow tada'>Kamu dapat "+poin+"!!</h3>";
                $('#resulting').append(text1);
                $('#resulting').append(text2);
                //var u=window.btoa(location.href);
                var aftersales ='<div class="aftersales"><button class="btn btn-primary btn-lg btn-fb wow flipInY" onclick="return fbs_click(\''+badge+'\');">Bagi ke Facebook</button></div>';
                $('#resulting').append(aftersales);
                //$('#moremenu').fadeIn( 1000 );
                $('#modalbody2').html(text1+text2);
                $('#modalbody2').append(aftersales);
                if(data.total_point != -1){
                    $('#resulting').append('<b>Total Nilai Kamu Sekarang : '+data.total_point+'</b>');
                    $('#modalbody2').append('<b>Total Nilai Kamu Sekarang : '+data.total_point+'</b>');
                }
                setTimeout(function() {
                    $('#afterSalesModal').modal('show');
                }, 3000); // milliseconds
                
                if(data.naik_level){
                    $('#naikLevel').show();
                    $('#naikLevelModal').show();
                }
                //next ul
                $('#ulnext').show();
                
                if(poin>9 || data.naik_level){
                    confetti();
                }
                
                if(!data.saved){
                    $('#saved').html('<h3>Nilai kamu belum disimpan..<br>Harap login untuk menyimpan.<br><br><button onclick="document.location=\'<?php 
        echo _SPPATH;
        ?>
register\';" style="min-width: 250px; padding-top: 20px; padding-bottom: 20px; background-color: #f0373c; border-color: #f0373c; " class="btn btn-primary btn-lg">Masuk</button>');
                }
            },'json');
            
        }
        </script>
</div>
<script>
function fbs_click(badge){
    u=location.href;    
    //t=document.title;
    var win = window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&p[images][0]='+badge,'sharer','toolbar=0,status=0,width=626,height=436');
    //win.location.reload();
    setTimeout(win.location.reload, 1400);
    return false;
}
</script>
<!-- Modal -->
<div class="modal fade" id="afterSalesModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
        <div class="modal-title" id="myModalLabel">Bagi ke teman</div>
      </div>
        <div class="modal-body" id="modalbody">
            <div class="wow tada" id="naikLevelModal" style="display: none;text-align: center; background-color: red; color:white;">
                <h1 style="padding: 30px;color:white;" >Selamat!! Kamu naik kelas!!</h1>
            </div>
            <div id="modalbody2" style="text-align: center;">
                
            </div>
            <div class="likeus" style="text-align: center; padding: 20px;">
                Kalau kamu menyukai ujian kami. Tolong like kami. Makaci! 
                <div class="likebut" style="padding:20px;">
                    <div class="fb-like fb-like2" data-href="<?php 
        echo $fb_page;
        ?>
" data-layout="button_count" data-action="like" data-show-faces="true" data-share="false"></div>
                </div>
            </div>  
      </div>
      <!--<div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>-->
    </div>
  </div>
</div>
        <?php 
        //update view
        $ul->ulangan_view = $ul->ulangan_view + 1;
        $ul->save();
        global $template;
        $ucreate_text = "Seberapa Indonesiakah Anda";
        //campur badge
        if ($ucreate) {
            $ul->ulangan_badge_1 = $ul->ulangan_image;
            $ul->ulangan_badge_2 = $ul->ulangan_image;
            $ul->ulangan_badge_3 = $ul->ulangan_image;
            $ul->ulangan_badge_4 = $ul->ulangan_image;
            $ul->ulangan_badge_5 = $ul->ulangan_image;
            $ucreate_text_title = $ul->ulangan_name;
            $ucreate_text = $acc->admin_name . " membuat ujian '" . $ul->ulangan_name . "' untuk INDONESIA. Berani terima tantangan dia?!?";
            $ul->ulangan_desc_1 = $ucreate_text;
            $ul->ulangan_desc_2 = $ucreate_text;
            $ul->ulangan_desc_3 = $ucreate_text;
            $ul->ulangan_desc_4 = $ucreate_text;
            $ul->ulangan_desc_5 = $ucreate_text;
            $ul->ulangan_descr = $ucreate_text;
        }
        if ($res_id != "") {
            $template->title = "Aku dapat {$res_id} !! | " . $ul->ulangan_name . " | " . $ucreate_text;
            $fb_opengraph = '<meta property="og:title" content="Aku dapat ' . $res_id . '!!" />';
            $template->headText[] = $fb_opengraph;
            $point = (int) $res_id;
            //pilah poin ke badge
            $urut = "ulangan_desc_1";
            if ($point == 0) {
                $urut = "ulangan_desc_1";
                $badge = _BPATH . _PHOTOURL . $ul->ulangan_badge_1;
            }
            if ($point > 0 && $point < 6) {
                $urut = "ulangan_desc_2";
                $badge = _BPATH . _PHOTOURL . $ul->ulangan_badge_2;
            }
            if ($point > 5 && $point < 8) {
                $urut = "ulangan_desc_3";
                $badge = _BPATH . _PHOTOURL . $ul->ulangan_badge_3;
            }
            if ($point > 7 && $point < 10) {
                $urut = "ulangan_desc_4";
                $badge = _BPATH . _PHOTOURL . $ul->ulangan_badge_4;
            }
            if ($point == 10) {
                $urut = "ulangan_desc_5";
                $badge = _BPATH . _PHOTOURL . $ul->ulangan_badge_5;
            }
            //image
            $fb_opengraph = '<meta property="og:image"  content="' . $badge . '" /> ';
            $template->headText[] = $fb_opengraph;
            //description
            $fb_opengraph = '<meta property="og:description" content="' . $ul->{$urut} . '" />';
            $template->headText[] = $fb_opengraph;
        } else {
            $template->title = $ul->ulangan_name . " | " . $ucreate_text;
            $fb_opengraph = '<meta property="og:title" content="' . $ul->ulangan_name . '" />';
            $template->headText[] = $fb_opengraph;
            //image
            $fb_opengraph = '<meta property="og:image"  content="' . _BPATH . _PHOTOURL . $ul->ulangan_fb_image . '" /> ';
            $template->headText[] = $fb_opengraph;
            //description
            $fb_opengraph = '<meta property="og:description" content="' . $ul->ulangan_descr . '" />';
            $template->headText[] = $fb_opengraph;
        }
        $template->metades = $ul->ulangan_descr . " #Seberapa Indonesiakah Anda | How Indonesia Are You";
        $template->metakey = 'How Indonesia Are You, Seberapa Indonesiakah Anda';
        //url
        $actual_link = "http://{$_SERVER['HTTP_HOST']}{$_SERVER['REQUEST_URI']}";
        $fb_opengraph = '<meta property="og:url" content="' . $actual_link . '" />';
        $template->headText[] = $fb_opengraph;
        //sitename
        $fb_opengraph = '<meta property="fb:app_id" content="' . Efiwebsetting::getData('fb_app_id') . '" />' . '<meta property="og:type" content="website" />';
        $template->headText[] = $fb_opengraph;
        //sitename
        $fb_opengraph = '<meta property="og:site_name" content="SeberapaIndonesiakahAnda"/>';
        $template->headText[] = $fb_opengraph;
    }
コード例 #9
0
 /**
  * Exclude object from result
  *
  * @param     QuizAnswer $quizAnswer Object to remove from the list of results
  *
  * @return    QuizAnswerQuery The current query, for fluid interface
  */
 public function prune($quizAnswer = null)
 {
     if ($quizAnswer) {
         $this->addCond('pruneCond0', $this->getAliasedColName(QuizAnswerPeer::ID), $quizAnswer->getId(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(QuizAnswerPeer::QUESTION_ID), $quizAnswer->getQuestionId(), Criteria::NOT_EQUAL);
         $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR);
     }
     return $this;
 }