This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if($aposta->aposta_time1 == $jogo->placar_time1 && $aposta->aposta_time2 == $jogo->placar_time2) { | |
$pontos[$aposta->id]['pontos'][] = CategoriaPonto::ACERTO_PLACAR; | |
} else { | |
if($jogo->empatou() && $aposta->aposta_time1 == $aposta->aposta_time2) { | |
$pontos[$aposta->id]['pontos'][] = CategoriaPonto::ACERTO_EMPATE; | |
} else if($aposta->vencedor == $jogo->vencedor) { | |
$pontos[$aposta->id]['pontos'][] = CategoriaPonto::ACERTO_VENCEDOR; | |
if($aposta->aposta_time1 == $jogo->placar_time1 || $aposta->aposta_time2 == $jogo->placar_time2) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<?php echo $form->labelEx($model,'ficha'); ?> | |
<?php echo $form->dropDownList($model,'ficha', | |
CHtml::listData($fichas, 'id', 'name'), | |
array( | |
'ajax' => array( | |
'type'=>'POST', | |
'url'=>CController::createUrl('movimentos/AtivosPorFicha'), | |
'update'=>'#Movimentos_id_servico', | |
), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$fichas = Movimentos::model()->PegaFichas(); | |
$servicos = array(); | |
if(isset($_POST['Model'])) { | |
$model->attributes = $_POST['Model']; | |
... | |
} | |
if(isset($model->ficha)) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class AttributesBackupBehavior extends CActiveRecordBehavior { | |
private $old_attributes; | |
public function afterFind($event) { | |
parent::afterFind($event); | |
foreach($this->owner->attributes as $name => $value) { | |
$this->old_attributes[$name] = $value; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function getWeeksForMonth($year, $month) { | |
$weeks = array(); | |
$weekday_of_first_day = date('w', strtotime("$year-$month-1")); | |
$last_day_of_first_week = 6 - $weekday_of_first_day + 1; | |
$weeks[] = array("$year-$month-1", "$year-$month-$last_day_of_first_week"); | |
$last_day_of_month = cal_days_in_month(CAL_GREGORIAN, $month, $year); | |
$day = $last_day_of_first_week; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Encrypt | |
{ | |
function Encrypt() | |
{ | |
$this->word = ""; | |
} | |
function bytexor($a,$b,$l) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
SOMA=0 | |
for i in {10..2} | |
do | |
NUMERO=$((`cat /dev/urandom|od -N1 -An -i` % 9)) | |
CPF=$CPF$NUMERO | |
SOMA=$(($SOMA+($NUMERO*$i))) | |
done | |
RESTO=$(($SOMA%11)) | |
if [ $RESTO -lt 2 ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Os extends CActiveRecord { | |
public function relations() { | |
return array( | |
'cliente' => array(self::BELONGS_TO, 'Cliente', 'id_cliente'), | |
); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php $this->widget('zii.widgets.grid.CGridView', array( | |
'columns'=>array( | |
array( | |
'name' => 'pesquisa', | |
'value' => '$data->pesquisa', | |
'header' => 'Termo', | |
), | |
array( | |
'name' => 'data_cadastro', | |
'value' => 'Yii::app()->dateFormatter->formatDatetime(strtotime($data->data_cadastro), "short", "short")', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class DefaultController extends CController | |
{ | |
public $defaultAction = 'login'; | |
public function actionLogin() { | |
$this->layout = 'login'; | |
$model = new AdminLoginForm; | |
if(isset($_POST['AdminLoginForm'])) { |
OlderNewer