Перейти к публикации
View in the app

A better way to browse. Learn more.

Дизайн и модификация 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.

Таблица лидеров

  1. newbie

    IPB Skins Team
    3
    Баллы
    4 292
    Публикаций

Популярные публикации

Отображаются публикации с наибольшей репутацией на 01.02.2020 в Сообщения

  1. Я же написал название настройки. Ключ настройки spam_service_send_to_ips
  2. Это баг. Напишите в поддержку IPS. system/Content/Item.php /** * Total item \count(including children) * * @param \IPS\Node\Model $container The container * @param bool $includeItems If TRUE, items will be included (this should usually be true) * @param bool $includeComments If TRUE, comments will be included * @param bool $includeReviews If TRUE, reviews will be included * @param int $depth Used to keep track of current depth to avoid going too deep * @return int|NULL|string When depth exceeds 10, will return "NULL" and initial call will return something like "100+" * @note This method may return something like "100+" if it has lots of children to avoid exahusting memory. It is intended only for display use * @note This method includes counts of hidden and unapproved content items as well */ public static function contentCount( \IPS\Node\Model $container, $includeItems=TRUE, $includeComments=FALSE, $includeReviews=FALSE, $depth=0 ) 1. /* Add Children */ $childDepth = $depth++; foreach ( $container->children() as $child ) { $toAdd = static::contentCount( $child, $includeItems, $includeComments, $includeReviews, $childDepth ); $childDepth здесь не увеличивается на единицу, что должно быть по задумке. См. документацию https://www.php.net/manual/en/language.operators.increment.php $childDepth = $depth++; заменить на $childDepth = ++$depth; или на $childDepth = $depth + 1; 2. В шаблоне categoriesSidebar {number="\IPS\downloads\File::contentCount( $category )"} и подобные конструкции. Используется плагин number, но метод может возвращать строку. Поэтому логичнее использовать expression

Account

Navigation

Поиск

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.