PHP code example of andrey-tech / calendar-js
1. Go to this page and download the library: Download andrey-tech/calendar-js library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
andrey-tech / calendar-js example snippets
js
$(() => {
let calendar = new Calendar();
// Включаем отображение заголовка года
calendar.showYearTitle = true;
// Выключаем отображение номера года в заголовке месяца
calendar.showMonthTitleYear = false;
// Выключаем отображение дат из последующего и предыдущего месяца в текущем месяце
calendar.showNextPrevDays = false;
// Получам календарь на текущий год
let $year = calendar.getYearHTML();
// Выводим календарь
$('body').append($year);
});