Смотрите видео ниже, чтобы узнать, как установить наш сайт в качестве веб-приложения на домашнем экране.
Примечание: В настоящее время эта функция требует доступа к сайту с помощью встроенного браузера Safari.
А где их конкретно давать?Все изображения конечно же загружаются на наш сервер.
Вы права группа вообще дали на использование BB-кодов?
- Добавлены новые права для официальных BB-кодов XenForo
- Изменён метод защиты содержимого
- Новая опция для разрешения или запрета использования определённых BB-кодов в подписи
- Кнопка зачёркивания текста теперь располагается прямо на панели инструментов
- Переписана функция предварительного парсера
<event event_id="bbm_callback_precache"><![CDATA[<p>If you need to make a database request for a Bb Code, the problem is it will be executes several times. This preCache system executes the formatter twice before parsing your text. The first time you can add some info in this preCache, then this listener will be executed. You can make your database request here and modified the preCache again so that when the formatter will be executed the second time, you can use the new data.</p>
<p>During the first execution, the $rendererStates will have the key 'bbmPreCacheInit'. During the second execution, it will have the key 'bbmPreCacheComplete'</p>
<p>To be effective, this event needs the admin to enable the Bbm precache in the Bbm Bb Codes options</p>
<blockquote style="overflow-x:auto;height:35px">
<code><em>array</em> &$preCache, <em>array</em> &$rendererStates, $formatterName</code>
</blockquote>
<p>Arguments:</p>
<ol>
<li><code><em>array</em> &$preCache</code> - the preCache data}.</li>
<li><code><em>array</em> $rendererStates</code> - rendering options for the XenForo renderer engine.
<li><code>$formatterName</code> - name of the formatter (base/wysiwyg).</li>
</ol>]]></event>
<event event_id="bbm_callback_template_cache"><![CDATA[<p>This listener allows to cache extra templates that must be rendered with your Bb Codes. You don't need to cache the template you have specified inside the Bb Code options. It is already automatically cached.</p>
<blockquote>
<code><em>array</em> &templates</code>
</blockquote>
<p>Arguments:</p>
<ol>
<li><code>&$templates/code> - the templates to cache in the view.</li>
</ol>
<p>Example:</p>
<pre> public static function myDemo(&$templates)
{
$templates[] = 'myNewTemplateToLoad';
}
</pre>]]></event>
<event event_id="bbm_callback_template_pre"><