Jump to content

Ближайшие события

Featured Replies

359866958_QIPShot-Screen021.png.b4adbcd6f7097c82beff8dcf246de02e.png

Как сделать в блоке календаря отображение не только будущих праздников и сегодняшних ?

Link to comment
https://ipbmafia.ru/topic/22029-blizhajshie-sobytiya/
Share on other sites

в виджете сместить дату начала отображения.

Найти 

		$_today	= new \IPS\calendar\Date( "now", \IPS\Member::loggedIn()->timezone ? new \DateTimeZone( \IPS\Member::loggedIn()->timezone ) : NULL );

		/* Do we have a days ahead cutoff? */
		$endDate	= NULL;

		if( isset( $this->configuration['days_ahead'] ) AND  $this->configuration['days_ahead'] > 0 )
		{
			$endDate	= $_today->adjust( "+" . $this->configuration['days_ahead'] . " days" );
		}

Заменить на 

		$_today	= new \IPS\calendar\Date( "now", \IPS\Member::loggedIn()->timezone ? new \DateTimeZone( \IPS\Member::loggedIn()->timezone ) : NULL );
		$_tmptoday = $_today;
		$_today = $_today->adjust( "-7 days" );

		/* Do we have a days ahead cutoff? */
		$endDate	= NULL;

		if( isset( $this->configuration['days_ahead'] ) AND  $this->configuration['days_ahead'] > 0 )
		{
			$endDate	= $_tmptoday->adjust( "+" . $this->configuration['days_ahead'] . " days" );
		}

Отредактировать и поставить свое число дней "назад". Снести старый виждет с экрана и поставить заново, иначе не отобразится.

это в /appl/calendar/widgets/upcomingEvents.php

Link to comment
https://ipbmafia.ru/topic/22029-blizhajshie-sobytiya/?&do=findComment&comment=161290
Share on other sites

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.