muzna/yii2-gc-calendar

There is no license information available for the latest version (dev-master) of this package.

java script Calender

Installs: 11

Dependents: 0

Suggesters: 0

Security: 0

Type:yii2-extension

dev-master 2022-03-28 05:03 UTC

This package is not auto-updated.

Last update: 2025-06-30 20:12:52 UTC


README

This README would normally document whatever steps are necessary to get your application up and running.

What is this repository for?

this is animated Calendar library depends on GcCalendar javascript library

How do I get set up?

  • run
    composer require muzna/yii2-gc-calendar
    
  • or add to Composer
     "muzna/yii2-gc-calendar": "dev-master",
    

usage

there are to ways ro use the extension:

  • register your view in the CalendarAsset

    \muzna\gccalendar\CalendarAsset::register($this);
    

    and then use the full GcCalendar attributes

    $("yourElement").calendarGC(options);
    
  • use Calendar Widget :

     \muzna\gccalendar\Calendar::widget([
      'selector'=>'cal',
      'dateBegin'=> 2,
      'prevIcon'=> '<',
      'nextIcon'=> '>',
      'events'=>$events,
    

])