続報になります。
redmine_knowledgebaseにおいて、init.rb 内の以下赤文字部分を変更した場合にアイコンが表示されました。
が、しかし、これって他に影響ないですかね。。。?
<修正後>
menu :top_menu, 'icon icon-test', { :controller => 'knowledgebase', :action => 'index' }, :caption => :knowledgebase_title,
:if => Proc.new {
User.current.allowed_to?({ :controller => 'knowledgebase', :action => 'index' }, nil, :global => true) ||
Setting['plugin_redmine_knowledgebase']['knowledgebase_anonymous_access'].to_i == 1
}
<修正前>
menu :top_menu, :knowledgebase, { :controller => 'knowledgebase', :action => 'index' }, :caption => :knowledgebase_title,
:if => Proc.new {
User.current.allowed_to?({ :controller => 'knowledgebase', :action => 'index' }, nil, :global => true) ||
Setting['plugin_redmine_knowledgebase']['knowledgebase_anonymous_access'].to_i == 1
}
赤字部分は、
menu(menu, item, url, options={})
の item に該当する部分だと思われますが、何に使用されているのか分からず
安易に修正するわけにもいかないなと。
ご存知の方がいらっしゃいましたらご教授頂けませんでしょうか。
以上、よろしくお願い致します。
2013年7月25日木曜日 16時49分13秒 UTC+9
num.ami...@gmail.com: