Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.33 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2.  
  3.   public function check()
  4.   {
  5.     // validate uploads on new or update files
  6.     if( ! $this->loaded() OR Upload::not_empty($_FILES['upload']))
  7.     {
  8.       $this->_callbacks['upload'] = array
  9.       ( 'upload_valid'
  10.       , 'upload_size'
  11.       , 'upload_not_empty'
  12.       );
  13.     }
  14.  
  15.     return parent::check();
  16.   }