Chrome
Safari
Edge
Firefox
Chrome (Android)
Tap the lock icon next to the address bar. Tap Permissions → Notifications . Adjust your preference.
Chrome (Desktop)
Click the padlock icon in the address bar. Select Site settings . Find Notifications and adjust your preference.
Safari (iOS 16.4+)
Ensure the site is installed via Add to Home Screen . Open Settings App → Notifications . Find your app name and adjust your preference.
Safari (macOS)
Go to Safari → Preferences . Click the Websites tab. Select Notifications in the sidebar. Find this website and adjust your preference.
Edge (Android)
Tap the lock icon next to the address bar. Tap Permissions .
Find Notifications and adjust your preference.
Edge (Desktop)
Click the padlock icon in the address bar. Click Permissions for this site . Find Notifications and adjust your preference.
Firefox (Android)
Go to Settings → Site permissions . Tap Notifications . Find this site in the list and adjust your preference.
Firefox (Desktop)
Open Firefox Settings. Search for Notifications . Find this site in the list and adjust your preference.
Версия ipb:3.3.4
В файле 'admin/sources/classes/bbcode/custom/defaults.php' как вы уже знаете обрабатываются наши бб коды. так вот:
class bbcode_test extends bbcode_parent_class implements bbcodePlugin { public function __construct( ipsRegistry $registry, $_parent=null ) { $this->currentBbcode = 'test'; parent::__construct( $registry, $_parent ); } protected function _replaceText($txt) { $_tags = $this->_retrieveTags(); foreach( $_tags as $_tag ) { $txt = preg_replace( "/\[{$_tag}\](.+?)\[\/{$_tag}\]/i", "<div style='color:#00ff00;'>\\1</div>", $txt ); } return $txt; } }это бб код 'test' - при написании:
он нам выведет контент красным цветом:
Суть просьбы:
Необходимо добавить опции к тегу на пример:
из за чего если в 'defaults.php' написать (Приблизительный по смыслу контент php кода):
if ($options['message']) { if ($options['message'] >= 0) { $message_return = "<li> {$options['message']} </li>"; } else { break; } }Где $message_return будет равняться 15 так как мы указали в опции message - 15. (с остальными опциями то же самое)
Очень прошу помочь)