Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1.         // Configurando upload da imagem
  2.         $config = array(
  3.             'file' => $data['Entidade']['file'],
  4.             'directory' => 'brasoes/'
  5.         );
  6.         $extension = array('gif', 'jpeg', 'png', 'jpg');
  7.  
  8.         // Limitando tipos de upload
  9.         $upload = $this->Upload->setType($extension)
  10.                         ->setCustomName($codAuxiliar)->inicialize($config);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement