public function beforeSave() { if (!$this->id) { $msg = Yii::app()->user->name . ' commented on ' . $this->movie->get('name') . ' "' . $this->comment . '"'; TwitterPost::send($msg); } return parent::beforeSave(); }
<?php require_once 'TwitterPost.php'; $tweet = new TwitterPost(); $tweet->send();