Skip to content

Instantly share code, notes, and snippets.

@huoxito
Created August 25, 2011 14:48
Show Gist options
  • Save huoxito/1170832 to your computer and use it in GitHub Desktop.
Save huoxito/1170832 to your computer and use it in GitHub Desktop.
Slug on cakephp
<?php
function beforeSave(){
$slug = Inflector::slug($this->data['Servico']['nome'], '-');
$this->data['Servico']['slug'] = strtolower($slug);
return true;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment