Jump to content
View in the app

A better way to browse. Learn more.

IPBMafia.ru - поддержка Invision Community, релизы, темы, плагины и приложения

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Tutorials


Tutorials - полнофункциональная система обучающих статей для вашего сообщества IPS.

Полная совместимость с IPS (клубы, рекомендуемые комментарии, контент-сообщения и т. д.).

Неограниченные категории статей, а также неограниченная глубина отношений между родителями и детьми.

Значки категорий.

Возможность использовать систему комментариев или темы поддержки, или оба.

Разрешения для каждой категории для отображения категории, чтения статей, отправки статей, добавления комментариев и исключения очередей утверждения. Дополнительные поля, которые можно использовать для каждой категории.

Быстрое редактирование (ajax) заголовка руководства при просмотре категорий.

Предварительный просмотр содержания учебника при наведении на ссылку учебника в представлении категории.

Групповые разрешения на определенные действия.

Полное описание ENG:

Спойлер

Here's a quick rundown of some of the features for this application:

  • Fully compatible with IPS 4.2 (Clubs, Recommended Comments, Content Message, etc.)
  • Unlimited categories of articles, plus unlimited depth of parent-child relationships
  • Category Icons
  • Ability to use comments system or support topics, or both
  • Per-category permissions to show category, read articles, submit articles, add comments, and avoid approval queues
  • Extra Fields that can be used per-category
  • Quick edit (ajax) of tutorial's title on category view
  • Preview the tutorial content when you hover the tutorial link on category view
  • Group permissions on specifc actions
  • Integration with the Advertisements system
  • Integration with the Bulk Mail system
  • Integration with ACP Live Seach (Tutorials categories)
  • Integration with Tag system
  • Integration with Report system
  • Integration with Search system
  • Integration with Share Links to share, download, or print articles
  • Integration with Sitemap system to include tutorials in your sitemap
  • Moderator actions on articles and comments
  • Ability to create RSS feeds of all tutorials
  • Ability to attach files to tutorials and comments
  • Ability to quickly convert a forum post into a new tutorial
  • Ability to copy a tutorial from one category to another or to the same category
  • Friendly URLs for tutorials and categories
  • Ability to give reputation points for tutorials
  • Ability to rate tutorials
  • Ability to follow categories and tutorials to receive notifications on updatesupdates
  • Tools to create topics to existing tutorials, make tutorials of topics and rebuild support topics text if you have changed the template on Tutorials settings.
  • And much, much more!

 


 

  • Respected changed the title to Tutorials 2.5.2
  • Replies 101
  • Просмотров 32,9k
  • Created
  • Последний ответ

Лучшие авторы в теме

Most Popular Posts

  • В общем так:  1. добавить (source/../Category.php) параметр в функцию, должно быть так: public function getLastCommentTime( \IPS\Member $member = NULL ) 2. В заголовке класса добавить посл

  • @avangcom а я что? я ничего. 

  • Что сразу Desti?? Редактировать файл sources/Category/Category.php Добавить      use \IPS\Node\Statistics; после строки (15)       use \IPS\Node\Colorize;  

Posted Images

  • 7 месяцев спустя...
  • Author
35 минут назад, icechieff сказал:

Привет. В оф. ветке поддержки пишут, что выложили апдейт с поддержкой 4.6.х. Стоит ли ждать его тут?)

привет. что то я не вижу на оф сайте новой версии. такая же как и здесь.

Спойлер

5656.thumb.png.f0bc68aadce0b078fecc75f21e98875b.png

возможно на сайте автора оно появилось?

 

  • Author
18 минут назад, Zero108 сказал:

Кто-то реально это юзает у себя? Что такого туда можно запостить и почему для этого нельзя просто создать раздел на форумах?

ну я так понимаю это замена плагинам и базы с пейдж, кто не умеет ставить их в страницы или создавать свои.можно ведь и в приложении такое замутить. ну может функций по более в этом, чем в страницах.

я как то ставил давно, ничего не понял, похоже на блоги, но отображение чуть другое, другие функции. удалил и не ставил

В этой версии появляется ошибка на ips 4.6
 

[[Template tutorials/front/browse/rows is throwing an error. This theme may be out of date. Run the support tool in the AdminCP to restore the default theme.]]

На оф.сайте апдейта не было,просто автор исправил ошибку для 4.6 и рассылает fix покупателям в лс.

Там всего пара ошибок, но сейчас нет времени разбираться. В одной функции не хватает параметра и еще одна неопределенная функция, видимо куда-то переместили. 

В общем так: 

1. добавить (source/../Category.php) параметр в функцию, должно быть так:
public function getLastCommentTime( \IPS\Member $member = NULL )

2. В заголовке класса добавить после  use \IPS\Node\Colorize; строку 
     use \IPS\Node\Statistics;

3. В modules/admin/tut../tools.php в функции doCreateTopics() вместо строк 

            $select = \IPS\Db::i()->select( '*', много букав));
            $total    = $select->count( TRUE );

вставить 

            $select = \IPS\Db::i()->select( '*', 'tutorials_articles', array( implode( ' AND ', $where ) ), 'a_id ASC', array( is_array( $data ) ? $data['done'] : 0, $cycle ));
            $total = \IPS\Db::i()->select( 'count(*)', 'tutorials_articles', array( implode( ' AND ', $where ) ), 'a_id ASC', array( is_array( $data ) ? $data['done'] : 0, $cycle ))->first();

а в функции rebuildTopicsCycle() заменить похожую конструкцию на 

            $select = \IPS\Db::i()->select( '*', 'tutorials_articles', $_SESSION['tutorials_rebuild_topics'], 'a_id ASC', array( is_array( $data ) ? $data['done'] : 0, $cycle ) );
            $total = \IPS\Db::i()->select( 'count(*)', 'tutorials_articles', $_SESSION['tutorials_rebuild_topics'], 'a_id ASC', array( is_array( $data ) ? $data['done'] : 0, $cycle ) )->first();

Вроде больше ошибок не попалось, на последней версии работает и паблик и админка. Будут еще ошибки - пишите, поковыряюсь. 
 

Еще, судя по всему, надо добавить (в файле п.1 ) строку 

    public static $commentClass = 'IPS\tutorials\Article\Comment';

Я пока до конца не понял, что они там наколбасили, но хуже в любом случае не будет :) 
 

 

В 04.08.2021 в 06:35, mamyka сказал:

На оф.сайте апдейта не было,просто автор исправил ошибку для 4.6 и рассылает fix покупателям в лс.

Апдейт они сделали, только какого-то хрена номер версии не поменяли...

  • Author
4 минуты назад, mamyka сказал:

SlawkA 

What's New in Version 2.6.0 

Version 2.6.0 is IPS 4.6 only!

Added ability to submit tutorials/comments anonymously.

пошел покупать 😁

пока в пабле не появилась

Еще ошибки выплыли, надо во всех файлах заменить is_array на \is_array и array_slice на \array_slice.

В основном эти ошибки в extension и widgets, проще всего поиском по файлам пройтись и заменить везде, где найдете.
 

  • 5 месяцев спустя...
  • 2 месяца спустя...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Ответить в этой теме...

Последние посетители 0

  • No registered users viewing this page.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.