You are here

public function CalendarStyleInfo::setMini in Calendar 8

Same name and namespace in other branches
  1. 8.2 src/CalendarStyleInfo.php \Drupal\calendar\CalendarStyleInfo::setMini()

Setter for the mini format variable.

Parameters

bool $mini: TRUE if the calendar is shown in mini, FALSE otherwise.

File

src/CalendarStyleInfo.php, line 165

Class

CalendarStyleInfo
Defines a calendar style info object.

Namespace

Drupal\calendar

Code

public function setMini($mini) {
  $this->mini = $mini;
}