Перейти к публикации
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.

Undefined index в widget configuration

Опубликовано:

Здравствуйте. Восстанавливаю приложение, подзабил на разработку, а тут вышла 4.4.

 

Ошибка:

 

Whoops\Exception\ErrorException: Undefined index: ActiveGamesWidgetType (8)

 

Функции в виджете:

 

	public function configuration( &$form=null )
{
		if ( $form === null )
	{
 		$form = new \IPS\Helpers\Form;
		}


	$form->add( new \IPS\Helpers\Form\Radio( 'ActiveGamesWidgetType', isset( $this->configuration['ActiveGamesWidgetType'] ) ? $this->configuration['ActiveGamesWidgetType'] : '', TRUE, array( 'options' => array(
		-1	=> 'Лобби && Игры',
		0	=> 'Игры',
		1	=> 'Лобби',
	) ) ) );

		return $form;
	} 

 

	public function render()
{
	$games = \IPS\wc3\ActiveGames\ActiveGames::getGamelist(
		$this->configuration['ActiveGamesWidgetType']);

	return $this->output(
		$games
}

 

Я так понимаю, нужно ISSET добавить, но он добавлен, что не так?

Рекомендованные сообщения

Опубликовано:

В седьмой версии появился оператор объединение с null - ??.

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

 

$ids = explode( ',', isset( $groups[ $id ] ) ? $groups[ $id ] : '' );

Объединение с null

 

$ids = explode( ',', $groups[ $id ] ?? '' );

 

 

if( !isset( $groups[ $id ] ) OR $groups[ $id ] != 2 )

Объединение с null

 

if( ( $settings[ $id ] ?? '' ) != 2 )

 

 

$games = \IPS\wc3\ActiveGames\ActiveGames::getGamelist(isset($this->configuration['ActiveGamesWidgetType']) ? $this->configuration['ActiveGamesWidgetType'] : '');

Объединение с null

 

$games = \IPS\wc3\ActiveGames\ActiveGames::getGamelist($this->configuration['ActiveGamesWidgetType'] ?? '');

Опубликовано:
  • Автор

Спасибо, сейчас проснусь - ознакомлюсь )

Создайте аккаунт или войдите в него для комментирования

Сейчас на странице 0

  • Нет пользователей, просматривающих эту страницу.

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.