Skip to content
This repository was archived by the owner on Oct 17, 2021. It is now read-only.

Commit 7fdab41

Browse files
committed
readme and comment
1 parent b82f66e commit 7fdab41

File tree

2 files changed

+10
-16
lines changed

2 files changed

+10
-16
lines changed

README.md

+6-12
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ MySQL/JSON integration with FullCalendar and event recurrence capabilities.
1111
# Features
1212

1313
* **Repeating events (NEW!)**
14-
* Weekday scheduling supported
15-
* Recurring events, all-day events, multi-day events supported
16-
* Recurrence editing restricted to delete only
14+
* Supports weekly recurrences
15+
* Supports regular, all-day, and multi-day events
16+
* Supports recurrence editing - deletion only
1717
* Available for JSON
1818
* Event scheduling
1919
* JSON scheduling added
20-
* Description field added for MySQL/JSON
2120
* FC updated from v2.6.1 to v3.9.0
2221
* BS3 to BS4 update
2322
* Event title/description hover added
23+
* Added description field
2424

2525
## Getting Started
2626

@@ -45,7 +45,7 @@ JSON Object Event
4545
```
4646
[{"id":4,
4747
"rid":4,
48-
"repeat":"no",
48+
"eventType":"single event",
4949
"title":"Meeting",
5050
"description":"some text for meeting",
5151
"start":"2019-01-11 10:30:00",
@@ -61,10 +61,6 @@ MySQL Event Schema
6161
(5, 'Meeting', 'some text for meeting', '#000', '2019-01-11 10:30:00', '2019-01-11 12:30:00')
6262
```
6363

64-
New Properties
65-
66-
* rid = recurrence id
67-
* repeat = repeat status
6864

6965
## Additional Readings & Resources
7066

@@ -87,7 +83,7 @@ Submit a PR and I'll review. Look for untagged/unassigned issues to help with.
8783

8884
## Versioning
8985

90-
Version 1.1.0
86+
Version 1.2.0
9187

9288
## Authors
9389

@@ -103,5 +99,3 @@ This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md
10399

104100
* Repo built on Adam Shaw's FC: https://github.com/fullcalendar/fullcalendar
105101
* Repo forked from jamelbaz's repository: https://github.com/jamelbaz/FullCalendar-BS3-PHP-MySQL
106-
* Code used for JSON event scheduling: https://www.taniarascia.com/how-to-use-json-data-with-php-or-javascript/
107-
* Code used for event scheduling recurrences: https://stackoverflow.com/questions/7061802/php-function-for-get-all-mondays-within-date-range

index-json.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,9 @@
161161
<label class="btn btn-outline-primary active">
162162
<input type="radio" name="recOption" autocomplete="off" checked value="weekly"> Weekly
163163
</label>
164-
<label class="btn btn-outline-primary">
164+
<!-- <label class="btn btn-outline-primary">
165165
<input type="radio" name="recOption" autocomplete="off" value="monthly"> Monthly
166-
</label>
166+
</label> -->
167167
</div>
168168
</div>
169169
<div class="row">
@@ -218,12 +218,12 @@
218218
<input type="text" name="endDate" class="form-control" id="endDate">
219219
</div>
220220
</div>
221-
<div class="form-group">
221+
<!-- <div class="form-group">
222222
<label for="occurrences" class="col-sm-12 control-label">Occurrences</label>
223223
<div class="col-sm-12">
224224
<input type="text" name="occurrences" class="form-control" id="occurrences" placeholder="12">
225225
</div>
226-
</div>
226+
</div> -->
227227
</div>
228228
</div>
229229
</div>

0 commit comments

Comments
 (0)