Skip to content

Instantly share code, notes, and snippets.

@mariuswilms
Created March 6, 2009 10:20
Show Gist options
  • Select an option

  • Save mariuswilms/74853 to your computer and use it in GitHub Desktop.

Select an option

Save mariuswilms/74853 to your computer and use it in GitHub Desktop.
<?php
class Example extends MediaAppModel
// ...
var $validate = array(
// ...
'extension' => array('rule' => array('checkExtension', // order: deny, allow
array('bin', 'class', 'dll', 'dms', 'exe'), // blacklist
array('jpg', 'tmp') // whitelist
),
),
// ...
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment