~epii/kagura/1.1

« back to all changes in this revision

Viewing changes to plugins/nicovideo/nicovideo.plug.php

  • Committer: epii
  • Date: 2009-12-27 06:14:34 UTC
  • Revision ID: svn-v4:9b580f6f-30a1-4087-afa3-92ba4f18fc20:trunk:26
Kagura ディレクトリとプラグインディレクトリを分離。
また Sample プログラムも別ディレクトリに。
それに伴いバージョンを v1.1 に変更。

ライセンスを LGPL に変更した。

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
 
 
3
function kag_cmd_nicovideo_convert($args, $conv){
 
4
        if(count($args) < 1)
 
5
                return $conv->error_arg_count();
 
6
        $id = $args[0];
 
7
        $alt = (count($args)>1?$args[1]:'');
 
8
        $result = '';
 
9
        $result .= '<div class="kag_nicovideo">';
 
10
        if(KAG_USE_OBSOLATE)
 
11
                $result .= '<iframe class="kag_nicovideo" src="http://ext.nicovideo.jp/thumb/'.$id.'" scrolling="no" frameborder="0">';
 
12
        else
 
13
                $result .= '<object data="http://ext.nicovideo.jp/thumb/'.$id.'" class="kag_nicovideo">';
 
14
        $result .= '<a href="http://www.nicovideo.jp/watch/'.$id.'">【ニコニコ動画】'.$alt.'</a>';
 
15
        if(KAG_USE_OBSOLATE)
 
16
                $result .= '</iframe>';
 
17
        else
 
18
                $result .= '</object>';
 
19
        $result .= '</div>';
 
20
        return $result;
 
21
}
 
22
 
 
23
?>