makzumi/calendar

此包的最新版本(dev-master)没有提供许可信息。

Laravel 4 弹性日历

dev-master 2016-06-17 23:32 UTC

This package is not auto-updated.

Last update: 2024-09-24 06:55:47 UTC


README

Laravel 4 弹性日历,支持月份、周和日视图,以及日期的多事件。

要动态更改视图类型,请传递一个名为 'cv'(日历视图)的 GET 变量,其值为 'week' 或 'day'。日和周视图分为 30 分钟间隔的行。

安装

将此添加到 composer.json 中的 "require" 部分

	"makzumi/calendar": "dev-master"

之后运行 composer update,然后在 app.php 中添加

	'providers' => array(
				...,
				'Makzumi\Calendar\CalendarServiceProvider',
			),

使用时,创建一个新的 Calendar 实例并生成它,下面您可以找到一些选项来自定义它

	$events = array(
		"2014-04-09 10:30:00" => array(
			"Event 1",
			"Event 2 <strong> with html</stong>",
		),
		"2014-04-12 14:12:23" => array(
			"Event 3",
		),
		"2014-05-14 08:00:00" => array(
			"Event 4",
		),
	);

	$cal = Calendar::make();
	/**** OPTIONAL METHODS ****/
	$cal->setDate(Input::get('cdate')); //Set starting date
	$cal->setBasePath('/dashboard'); // Base path for navigation URLs
	$cal->showNav(true); // Show or hide navigation
	$cal->setView(Input::get('cv')); //'day' or 'week' or null
	$cal->setStartEndHours(8,20); // Set the hour range for day and week view
	$cal->setTimeClass('ctime'); //Class Name for times column on day and week views
	$cal->setEventsWrap(array('<p>', '</p>')); // Set the event's content wrapper
	$cal->setDayWrap(array('<div>','</div>')); //Set the day's number wrapper
	$cal->setNextIcon('>>'); //Can also be html: <i class='fa fa-chevron-right'></i>
	$cal->setPrevIcon('<<'); // Same as above
	$cal->setDayLabels(array('Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat')); //Label names for week days
	$cal->setMonthLabels(array('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December')); //Month names
	$cal->setDateWrap(array('<div>','</div>')); //Set cell inner content wrapper
	$cal->setWeekStartsMonday(true); // Make monday the first day of the week
	$cal->setHighlightEvents(true); // Highlight dates with events in month view (potential performance impact!)
	$cal->setTableClass('table'); //Set the table's class name
	$cal->setHeadClass('table-header'); //Set top header's class name
	$cal->setNextClass('btn'); // Set next btn class name
	$cal->setPrevClass('btn'); // Set Prev btn class name
	$cal->setEvents($events); // Receives the events array
	/**** END OPTIONAL METHODS ****/

	echo $cal->generate() // Return the calendar's html;