SimpleCalendar
- Comments:
- 27
- Tags:
SimpleCalendar is a very simple PHP calendar class written to be easy to use and flexible.
It includes basic event logic and is made to be modified to your particular needs.
Sample Usage
<?php
require_once('SimpleCalendar.php');
$calendar = new donatj\SimpleCalendar();
$calendar->setStartOfWeek('Sunday');
$calendar->addDailyHtml( 'Sample Event', 'today', 'tomorrow' );
$calendar->show(true);
Example Calendar
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
Sample Event | ||||||
Sample Event |
Click here for the Github repository.
Recent Activity
Test in PHP 8.4
Merge pull request #26 from donatj/php-version/8-3--users-jdonat-projects-donatj-simplecalendar--github-workflows-ci-yml
Update PHP to 8.3
Update PHP to 8.3
Jesse Donat (donatj)
Update PHP to 8.3Replace travis badge with GitHub Actions
Jesse Donat (donatj)
Use MakefileAdds helpful Makefile
Update autoloader syntax
Use correctly compatible versions
Updates README
Minor fixup
Drop pre-7.2’s
Run fixer
Add phpcs and php-cs-fixer
Fixup
Add phpstan.neon
Cleans up composer.json some
Correct backwards annotation
Remove unnecessary if
Min PHP 7.2
Fix http url
Bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Updates docs
Jesse Donat (donatj)
Resolve PHP 8.1+ deprecation noticeGitHub (web-flow)
Test in PHP 8.2Merge pull request #21 from donatj/dependabot/github_actions/actions/checkout-3
Bump actions/checkout from 2 to 3
Bump actions/checkout from 2 to 3
Bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Create dependabot.yml
Build | Date | Message |
---|---|---|
v0.6.0 Download | Simplified shrimp2ts work | |
v0.6.1 Download | gitignore updates | |
v0.6.2 Download | Merge branch 'keesiemeijer-master' | |
v0.7.0 Download | Updates docs | |
v0.8.0 Download | Replace travis badge with GitHub Actions |
Comment by: Greg Duckworth on
Comment by: Jesse G. Donat on
The constructor on Simple Calendar takes a date string (see strtotime()
) so an easy way is simply
$cal = new SimpleCalendar('+1 Month');
or
$cal = new SimpleCalendar('June 2012');
There is also a setDate method which allows you to change the date of the calendar after initial construction.
Comment by: HvToor on
Hope you can help with it,
Comment by: Jesse G. Donat on
Comment by: Dirk on
Thx in advance
Comment by: Alberto on
"Notice: Undefined offset: 1 in SimpleCalendar.php on line 150"
Comment by: murali on
Thanks.
Comment by: Guilherme on
To change the header,
Sun Mon Tue Wed Thu Fri Sat
To other languages ? what should i do ?
Thanks
Guilherme
Comment by: Brad Haizlett on
Comment by: Jesse G. Donat on
$calendar = new donatj\SimpleCalendar();
$calendar->show(true);
$calendar->setDate('last month');
$calendar->show(true);
$calendar->setDate('next month');
$calendar->show(true);
If you mean button's for next/previous month, thats outside the scope. This is just a little widget to render a calendar. You can write JavaScript or PHP to do it yourself though without too much trouble.
Comment by: Peter on
One question, regarding this line:
$out .= "\n" . ($i != $count ? '
Why did you check ($i != $count?)
In this way, one TR - start is missed.
Br,
Peter
Comment by: Anthony on
If you have update please put it out there.
Comment by: kalle on
Parse error: syntax error, unexpected T_STRING in C:\wamp\www\calendar\donatj\SimpleCalendar.php on line 3
Comment by: Greg on
Comment by: Chris Yates on
I've incorporated this in a pretty complex ERP system and it works great and is easy to expand on
Comment by: Jose Vivas on
Comment by: Mesk on
How can I make the rendering of events that are date ranges, not individual events, appear as a single event spanning from the first to the last day?
Comment by: Jesse G. Donat on
It would require more a more complicated combination of HTML and CSS than this is designed to generate.
This outputs a reasonably simple table structure. Having events visually span multiple days would probably double if not triple the complexity of the library.
I'm sure there are other libraries that would better suit your needs.