1
0
mirror of synced 2025-03-10 23:06:06 +03:00
2007-09-06 17:20:49 +00:00

16 lines
264 B
PHP

<?php
/*
* Edit this file to customise your model class
*
* auto-generated by the sfDoctrine plugin
*/
class BlogPost extends BaseBlogPost
{
public function filterSetName($name)
{
$this->setSlug(Common::createSlug($name));
return $name;
}
}