От: IP.Gallery 3.1.0 и BB код для вставки картинки.
Файл: admin\applications_addon\ips\gallery\modules_public\images\viewimage.php
Ищем 2 раза!:
$this->data['image_url'] = $this->settings['gallery_images_url'] . '/' . $dir . $this->data['masked_file_name'];
Ниже вставляем
$this->data['tn_image_url'] = $this->settings['gallery_images_url'] . '/' . $dir .tn_ . $this->data['masked_file_name'];
Затем
Look & Feel > Manage Skin Sets & Templates > Manage Skin Sets & Templates
Внешний вид > Управление стилями
Выбираем нужный скин. Дальше: skin_gallery_img -> show_image
Ищем.
<input onclick="this.select();" type='text' size='40' readonly='readonly' name='bbcode1' value='[url={$this->settings['board_url']}/index.php?app=gallery&module=images&img={$info['id']}][img={$info['image_url']}][/url]' class='input_text' />
Теперь выбираем, что нам с этим кодом, надо делать.
Теперь если нам надо:
URL=адрес картинки полноразмерной][img=адрес превьюшки][/url]
То тот кусок который нашли, меняем на
<input onClick="this.select();" type='text' size='40' readonly='readonly' name='bbcode1' value='[url={$info['image_url']}][img={$info['tn_image_url']}][/url]' class='input_text' />
Что имхо не очень удобно. Как вариант, удобнее.
[url=адрес этой страницы ][img=адрес превьюшки][/url]
То тогда, тот кусок, который нашли, сменить на
<input onClick="this.select();" type='text' size='40' readonly='readonly' name='bbcode1' value='[url={$this->settings['board_url']}/index.php?app=gallery&module=images&img={$info['id']}][img={$info['tn_image_url']}][/url]' class='input_text' />
Или открывать большую картинку с помощью Lightbox ... Но это уже третий вариант решения. :D
Sign in to follow this
Followers
0
0 Comments
Recommended Comments
There are no comments to display.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now