管理画面メディア一覧で階層間のアクセスをしやすく

freoの管理画面、メディア一覧での階層間のアクセスをしやすくするためのカスタマイズです。

templates/internals/admin/medeia.html

71行目

<td><a href="{$freo.core.http_file}/admin/media?path={$parent}"><img src="{$freo.core.http_url}images/icons/directory.png" alt="ディレクトリ" width="16" height="16" /> <code>..</code></a></td>

80行目

<td><a href="{$freo.core.http_file}/admin/media?path={$freo.query.path}{$directory.name}/"><img src="{$freo.core.http_url}images/icons/{if $directory.restriction}directory_restricted.png{else}directory.png{/if}" alt="ディレクトリ" width="16" height="16" /> <code>{$directory.name}</code></a></td>

templates/internals/admin/ifram_medeia.html

70行目

<td><a href="{$freo.core.http_file}/admin/media?path={$parent}&type=iframe"><img src="{$freo.core.http_url}images/icons/directory.png" alt="ディレクトリ" width="16" height="16" /> <code>..</code></a></td>

79行目

<td><a href="{$freo.core.http_file}/admin/media?path={$parent}&type=iframe"><img src="{$freo.core.http_url}images/icons/directory.png" alt="ディレクトリ" width="16" height="16" /> <code>..</code></a></td>

ファイル管理プラグインを導入している場合は templates/plugins/filemanager/admin.html

58行目

<td><a href="{$freo.core.http_file}/filemanager/admin?path={$parent|escape:'url'}"><img src="{$freo.core.http_url}images/icons/directory.png" alt="ディレクトリ" width="16" height="16" /> <code>..</code></a></td>

66行目

<td><a href="{$freo.core.http_file}/admin/media?path={$parent}&type=iframe"><img src="{$freo.core.http_url}images/icons/directory.png" alt="ディレクトリ" width="16" height="16" /> <code>..</code></a></td>

に差し替えます(それぞれに上の階層へのリンクをはるだけ)。