The Google calendar extensions written for yii framework lets you incorporate Calendar functionality into your own application or website.
You can display, create, update and delete the events.
This Extensions lets you perform most of the operations a normal Google Calendar user can do on the Google Calendar website.
Requirements ¶
...requirements of using this extension (e.g. Yii 1.1 or above)...
Installation ¶
Detailed installation instructions are given in this link
Usage ¶
Place the following code in the components of config->main php file.
<?php
'CALENDAR'=>array(
'class' => 'application. extensions.'your extension name'.'your php file',
),;
?>
Add the following code to your main layout where you wish to display the calendar.
<?php
$user = 'your gmail username';
$pass ='your gmail password'';
Yii::app()->CALENDAR->login($user, $pass);
?>
...external resources for this extension...
- [Project page] [Project home page](http://www.bcits.co.in/googlecalendar/index.php/site/index "Project home page")
- [Screen shots] [Screen shots of the extension](http://www.bcits.co.in/googlecalendar/index.php/site/page?view=about "screen shots of the extension")
Few minor issues
Great extension though! Keep up the good work.
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.