BB-код: прокручиваемая область

BB-код: прокручиваемая область 1.0.0

Compatibility
tested for compatibility
Database changes
not required
Author
Begemot
Public domain
no
Описание: добавляет BB-код прокручиваемой области.
Installation instructions
Открыть: bbcode.php

Найти:

Code:
// Quote
$bbcode_tpl['quote_open'] = <<<HTML
  <div class="q-wrap">
  <div class="q">

Добавить до:

Code:
$bbcode_tpl['scroll_open'] = <<<HTML
<div style="width:97%;height:300px;background:#fff;  border:1px solid #555; padding:6px;-webkit-border-radius:8px;-moz-border-radius:8px;-o-border-radius:8px;border-radius: 8px"><div style="overflow:auto;width:100%;height:100%;">
HTML;
$bbcode_tpl['scroll_close'] = <<<HTML
</div></div>
HTML;

Найти:

Code:
'[quote]'  => $tpl['quote_open'],

Добавить до:

Code:
'[scroll]'  => $tpl['scroll_open'],
'[/scroll]'  => $tpl['scroll_close'],

Открыть: posting_editor.tpl

Найти:

Code:
<input type="button" value="{L_QUOTE}" name="codeQuote" title="{L_QUOTE_TITLE}" style="width: 57px;" />

Добавить до:

Code:
<input type="button" value="{L_SCROLL}" name="codeScroll" title="{L_SCROLL_TITLE}" style="width: 73px;" />

Найти:

Code:
bbcode.addTag("codeQuote", "quote", null, "Q", ctrl);

Добавить до:

Code:
bbcode.addTag("codeScroll", "scroll", null, "", ctrl);

В language/ru/main.php добавить:

Code:
$lang['SCROLL'] = 'Прокрутка';
$lang['SCROLL_TITLE'] = 'Прокрутка: [scroll]Длинный текст[/scroll]';
  • scroll.webp
    scroll.webp
    53.3 KB · Views: 166
Author
Exile
Downloads
146
Views
429
First release
Last update

Ratings

0.00 star(s) 0 ratings

More resources from Exile

Back
Top