目次

「プラグイン」に戻る
DokuWikiおすすめプラグイン一覧。まとめ

Dokuwikiプラグイン : Custombuttons Pluginで挿入テンプレートボタンを追加



概要

plugin:custombuttons

編集画面のツールバーにテンプレートを追加できます。

注意事項

php-gd が必要

php-gdがインストールされている必要があります。

インストール例:
#yum install --enablerepo=remi,remi-php56  php-gd

確認
# php -m  |grep gd
gd

コードを修正する必要あり

文字が小さくなりすぎてしまいますので、
$ico.attr('width', 16);をコメントにします。

    // create the icon and add it to the button
    if(icon.substr(0,1) !== '/'){
        icon = DOKU_BASE + 'lib/images/toolbar/' + icon;
    }
    $ico.attr('src', icon);
    $ico.attr('alt', '');
    //$ico.attr('width', 16);
    $ico.attr('height', 16);
    $btn.append($ico);





「プラグイン」に戻る