コード例 #1
0
ファイル: photo.php プロジェクト: squaredcircle/GroupBot
 public function main()
 {
     Telegram::sendChatSendingPhotoStatus($this->Message->Chat->id);
     $local_path = random_pic(PHOTO_DIR);
     PhotoCache::SendPhotoByPath($this->db, $local_path, $this->Message->Chat->id);
 }
コード例 #2
0
ファイル: t_banana.php プロジェクト: squaredcircle/GroupBot
 public function t_banana()
 {
     $local_path = random_pic(BANANA_DIR);
     PhotoCache::SendPhotoByPath($this->db, $local_path, $this->Message->Chat->id);
 }
コード例 #3
0
ファイル: spoonm.php プロジェクト: squaredcircle/GroupBot
 public function main()
 {
     Telegram::sendChatSendingPhotoStatus($this->Message->Chat->id);
     PhotoCache::SendPhotoByPath($this->db, PHOTO_DIR . '/spoonm.jpg', $this->Message->Chat->id);
 }