Login   Register  
PHP Classes
elePHPant
Icontem

File: calendar.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Matt Malenski  >  Smarty Calendar  >  calendar.php  >  Download  
File: calendar.php
Role: Example script
Content type: text/plain
Description: Example of creating a Calendar Object
Class: Smarty Calendar
Generate month calendars using a Smarty template
Author: By
Last change:
Date: 2005-06-30 07:07
Size: 437 bytes
 

Contents

Class file image Download
<?
/**************************************************
 FILENAME: calendar.php
 PURPOSE: Creates Calendar Object and displays month view
 AUTHOR: Matthew A. Malenski
 DATE CREATED: Thu Jun 30 09:37:53 2005
**************************************************/

require_once('./calendar_vars.php');
require_once(
'./calendar_class.php');

//--- Create a Calendar Object
$my_cal = new calendar();
$my_cal->month_view();


?>