Beispiel #1
0
 static function createTopic($topicName)
 {
     $topic = new stdClass();
     $topic->name = $topicName;
     $topic->visible = 1;
     TopicDao::persist($topic);
 }