コード例 #1
0
ファイル: channel_module.php プロジェクト: samuel072/PHP
 public function get_activity($ch_id)
 {
     $table = new ActivityTable();
     return $table->get_by_channel($ch_id);
 }
コード例 #2
0
ファイル: activity_module.php プロジェクト: samuel072/PHP
 public function get_by_channel($ch_id, $next_id, $count)
 {
     $table = new ActivityTable();
     return $table->get_by_channel($ch_id, $next_id, $count);
 }