This file contains hidden or 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
public function admin_reup() | |
{ | |
$videos = $this->Video->find('all', array( | |
'conditions' => array('Video.type' => '1'), | |
) | |
); | |
foreach ($videos as &$video) { | |
$video['Video']['duration'] = $this->duration($video['Video']['youtube']); | |
$video['Video']['duration2'] = $this->duration($video['Video']['youtube2']); |
This file contains hidden or 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
public $validation = array( | |
array( | |
'field' => 'usuario', | |
'label' => 'Validação', | |
'rules' => 'callback_valida_acesso' | |
) | |
); |
NewerOlder