Calendar iCal Integration WordPress Tutorial
โœ‚๐Ÿƒ๐Ÿพโ€โ™€๏ธ๐Ÿƒ๐Ÿผโ€โ™‚๏ธ
๐Ÿ“–

Calendar iCal Integration WordPress Tutorial

Calendar iCal Integration WordPress Tutorial

After yesterdayโ€™s Calendar iCal Integration Email Tutorial we hoped we had a Calendar Event (creating) (component) โ€œtoolโ€ web application that could be used in a variety of ways by other web applications. The first cab off the rank for this we decided should be (this) โ€ฆ



WordPress Blog

โ€ฆ that being our TwentyTen themed local effort. One of the reasons we plumped for this is that it involves Publishing Dates and we can even get access to a Publishing Time and even a Publishing Timezone (though this last one is a โ€œhardcodedโ€ (piece of) knowledge, rather than it being gleaned by WordPress (data) in any way). So we had the choice of means of display of this new functionality โ€ฆ

  • adding to logic of the already hyperlinked Publishing Date data string
  • adding the Publishing Time as a new HTML a (hyper)link placed after the Publishing Date and linking to the Calendar functionality
  • adding relevant Emojis as new HTML a (hyper)links after the Publishing Date and linking to the Calendar functionality

โ€ฆ and we plumped for the last of these thoughts with our work today, as we liked the look of ๐Ÿ“… โž• ๐Ÿ“ง (that we tried out with our proof of concept p_o_fโšซhtml) to point at โ€ฆ

  • Create iCal Calendar Entry
  • Create and Email iCal Calendar Entry
  • Email (only) iCal Calendar Entry

โ€ฆ respectively. The โ€œgoโ€ with the email functionalities could be that you share a tutorial link with a friend whose email you know and correspond with.

And so it behoves us to show you (good olโ€™) TwentyTen header.php (the usual suspect) changes to make this happen below, for your perusal and/or interest โ€ฆ



function docgetclass(inc, intag) {

if (document.getElementsByClassName) {

return document.getElementsByClassName(inc);

} else {

var ijl;

var anarris=[];

var huhs=document.getElementsByTagName(intag);

for (ijl=0; ijl<huhs.length; ijl++) {

if (huh[ijl].className.indexOf(inc) != -1) {

anarris.push(huhs[ijl]);

}

}

return anarris;

}

}



function calendar_pass() {

var thisc='', thiscc='', thist='', jiicp=0, thisdate='', thistime='', nexttime='', thishour=0, nexthour=0, thisminute='', thissecond='00', thisurl='';

var h1cps=docgetclass('entry-title','*'); //document.getElementsByTagName('h2');

var cps=document.getElementsByTagName('a');

for (var iicp=0; iicp<h1cps.length; iicp++) {

thist=h1cps[iicp].innerHTML.split(' <')[0].split('<')[0];

thisurl='';

if (h1cps[iicp].innerHTML.indexOf(' id="d') != -1) {

thisurl="https://www.rjmprogramming.com.au/ITblog/" + h1cps[iicp].innerHTML.split(' id="d')[1].split('"')[0];

}

if (jiicp < cps.length) {

while (jiicp < cps.length && (cps[jiicp].innerHTML.indexOf(' content="') == -1 || cps[jiicp].innerHTML.indexOf('&#') != -1)) {

jiicp++;

}

if (jiicp < cps.length) {

if (cps[jiicp].title.indexOf(':') != -1) {

thisdate=cps[jiicp].innerHTML.split(' content="')[1].split('"')[0].replace('-','').replace('-','');

thishour=eval(cps[jiicp].title.split(':')[0]);

nexthour=thishour;

if (cps[jiicp].title.indexOf(' pm') != -1 && thishour < 12) thishour+=12;

if (thishour < 12) {

nexthour+=12;

} else if (nexthour < 23) {

nexthour=23;

}

thisminute=cps[jiicp].title.split(':')[1].split(' ')[0];

thistime=':' + ('0' + thishour).slice(-2) + thisminute + thissecond;

nexttime=':' + ('0' + nexthour).slice(-2) + thisminute + thissecond;

//alert(thist + ' ' + thisurl + ' ' + thisdate + thistime);

//alert("//www.rjmprogramming.com.au/PHP/ics_attachment.php?id=0&eventwords=test&title=" + encodeURIComponent(thist) + '&stage=' + encodeURIComponent(h1cps[iicp].innerHTML.split(' id="d')[1].split('"')[0]) + '&datestart=' + encodeURIComponent(thisdate + thistime) + '&dateend=' + encodeURIComponent(thisdate + thistime) + '&emode=Address&address=Address&description=Description&url=' + encodeURIComponent(thisurl));

//window.open("//www.rjmprogramming.com.au/PHP/ics_attachment.php?id=0&tz=" + encodeURIComponent("Australia/Perth,Australia/Perth") + "&eventwords=test&title=" + encodeURIComponent(thist) + '&stage=' + encodeURIComponent(h1cps[iicp].innerHTML.split(' id="d')[1].split('"')[0]) + '&datestart=' + encodeURIComponent(thisdate + thistime) + '&dateend=' + encodeURIComponent(thisdate + nexttime) + '&emode=AndTo&address=' + encodeURIComponent('rmetcalfe15@gmail.com') + '&description=Description&url=' + encodeURIComponent(thisurl), '_blank', 'top=45,left=55,width=600,height=600');

thisc="//www.rjmprogramming.com.au/PHP/ics_attachment.php?id=0&tz=" + encodeURIComponent("Australia/Perth,Australia/Perth") + "&eventwords=test&title=" + encodeURIComponent(thist) + '&stage=' + encodeURIComponent(h1cps[iicp].innerHTML.split(' id="d')[1].split('"')[0]) + '&datestart=' + encodeURIComponent(thisdate + thistime) + '&dateend=' + encodeURIComponent(thisdate + nexttime) + '&emode=To&address=emailAddress&description=Description&url=' + encodeURIComponent(thisurl);

thiscc="//www.rjmprogramming.com.au/PHP/ics_attachment.php?id=0&tz=" + encodeURIComponent("Australia/Perth,Australia/Perth") + "&eventwords=test&title=" + encodeURIComponent(thist) + '&stage=' + encodeURIComponent(h1cps[iicp].innerHTML.split(' id="d')[1].split('"')[0]) + '&datestart=' + encodeURIComponent(thisdate + thistime) + '&dateend=' + encodeURIComponent(thisdate + nexttime) + '&emode=Address&address=&description=Description&url=' + encodeURIComponent(thisurl);

cps[jiicp].innerHTML+=' <a id="ce' + h1cps[iicp].innerHTML.split(' id="d')[1].split('"')[0] + '" title="Create iCal Calendar Event ' + thist + '" target=_blank href="' + "//www.rjmprogramming.com.au/PHP/ics_attachment.php?id=0&tz=" + encodeURIComponent("Australia/Perth,Australia/Perth") + "&eventwords=test&title=" + encodeURIComponent(thist) + '&stage=' + encodeURIComponent(h1cps[iicp].innerHTML.split(' id="d')[1].split('"')[0]) + '&datestart=' + encodeURIComponent(thisdate + thistime) + '&dateend=' + encodeURIComponent(thisdate + nexttime) + '&emode=AndTo&address=' + encodeURIComponent('rmetcalfe15@gmail.com') + '&description=Description&url=' + encodeURIComponent(thisurl) + '">&#128197;</a>';

cps[jiicp].innerHTML+=' <iframe id="ice' + h1cps[iicp].innerHTML.split(' id="d')[1].split('"')[0] + '" src="about:blank" style="display:none;width:1px;height:1px;"></iframe><a title="Email and Create iCal Calendar Event ' + thist + '" target=_blank href="#" onclick=" var emtwo=prompt(' + "'" + 'Who do we email to?' + "','fillin@email.in'); document.getElementById('ice" + h1cps[iicp].innerHTML.split(' id="d')[1].split('"')[0] + "').src='" + thisc + "'.replace(/emailAddress/g, encodeURIComponent(emtwo)); window.open('" + thiscc + "','_blank'); \">&#10133;</a>";

cps[jiicp].innerHTML+=' <a id="ee' + h1cps[iicp].innerHTML.split(' id="d')[1].split('"')[0] + '" title="Email iCal Calendar Event ' + thist + '" target=_blank href="#" onclick=" var em=prompt(' + "'" + 'Who do we email to?' + "','fillin@email.in'); window.open('" + thisc + "'.replace(/emailAddress/g, encodeURIComponent(em)),'_blank'); \">&#128231;</a>";

jiicp+=3;

cps=document.getElementsByTagName('a');

}

}

}

}

}


</script>

<?php

if (isset($_GET['showtags'])) {

echo "<link href='//www.rjmprogramming.com.au/HTMLCSS/showtags.css' rel='stylesheet' type='text/css'>";

}

?>

</head>

<body onload=" checkonl(); setTimeout(initpostedoncc, 3000); sdescih(); widgetcon(); precc(); courseCookies(); cookie_fonts(); is_mentioned_by(); calendar_pass(); " <?php body_class(); ?>>

We hope you try out this WordPress TwentyTen themed blog functionality introduced with this code above.



Previous relevant Calendar iCal Integration Email Tutorial is shown below.

Calendar iCal Integration Email Tutorial

Calendar iCal Integration Email Tutorial

With yesterdayโ€™s Calendar iCal Integration Timezone Tutorialโ€˜s emphasis on timezones, we turn our attention now, thinking of our web application as a โ€œtoolโ€ and an integrated software product, to two interrelated issues โ€ฆ

  1. What does the future hold as far as using this Calendar โ€œtoolโ€ (web application)? In other words, what software and/or operating system platforms will use it and in what way.
  2. How do we respond with this Calendar โ€œtoolโ€ web application, fitting in with the requirements implicit in what the whole gammut of software and/or operating system platforms needing its services will need.

The most โ€œaskingโ€ of โ€œsoftware and/or operating system platformsโ€ that we can think of here is to cater for a mobile application WebView (please read here regarding Android WebView (using Eclipse or Android Studio IDEs) and iOS UIWebView (using Xcode IDE)) using the Calendar โ€œtoolโ€ web application. Mobile platform WebViews can be programmed with Back and Forward navigation buttons, but that is not the ideal thing to rely on to get you out of a pickle that your web application may cause a mobile application WebView, if it navigates out to a place where there is no navigable return. The Back and Forward mobile application WebView buttons may work to return from a Calendar Event population event โ€ฆ honestly donโ€™t know โ€ฆ but weโ€™d prefer to cater for a new means by which such an โ€œoffshootโ€ feeling of navigation can be avoided. So in our new incarnation of the Calendar (event) web application we allow any/all of the following three modes of rjmprogramming-event.ics creation โ€ฆ

  1. Create iCal Calendar Entry
  2. Email (only) iCal Calendar Entry
  3. Create and Email iCal Calendar Entry

โ€ฆ where the second of those above would leave you, within the web application running within a mobile applicationโ€™s WebView, not moving off the webpage you are on, and thus not falling foul of any โ€œoffshootโ€ navigation weaknesses (to the process).

This new emailing functionality, again only in serverside PHP (and not in clientside Javascript), is relatively easy to arrange by rearranging many of the PHP header statements and feeding that through to the PHP mail function to shoot off the email, given that the user, ahead of time, has supplied you with that filled in email address, which we also attend to today.

Our web application has, in two separate areas of the code, made use of an HTML select elementโ€™s child option elementsโ€™ title properties to contain useful information for the web applicationโ€™s workings. Weโ€™ll show you below some code to access the information stored from such an arrangement โ€ฆ



<select onchange='document.getElementById("subb").value=this.options[this.selectedIndex].title;' id='emode' name='emode'><option title='Create iCal Calendar Entry' value='Address'>Address</option><option title='Email (only) iCal Calendar Entry' value='To'>Email To (only)</option><option title='Create and Email iCal Calendar Entry' value='AndTo'>Email To (as well)</option></select>

โ€ฆ and you might wonder about the destination for the HTML option title property storage here? We use it to rename our HTML formโ€™s input type=submit button that fires off the callback message. The โ€œguisesโ€ of our one HTML input type=submit thus have a one to one correspondence with the values on that HTML select (dropdown) element, and with that list of โ€œmodes of outputโ€ we showed above. This is our approach to this today, but there are other approaches to such requirements regarding HTML form element HTML input type=submit element arrangements, and you may prefer to use multiple forms and/or multiple input type=submit buttons as we talk about with the series of blog posts finishing, so far, with HTML Multiple Form Multiple Submit Buttons Primer Tutorial.

Actually yesterday we prepared for another eventuality down the road of usefulness for this web application, but before we tell you about that, what weโ€™d encourage you to do yourself should you put such a Calendar (event) web application into production is, interface your data flow not with $_POST[] (nor $_GET[] โ€ฆ damn, gave away the secret) but weโ€™d prefer you to have it be that data in and out, as required, is stored in a secure database of some sort, for security purposes. But back to our (not very well kept) secret, yesterday, we prepared the ground for the web application (callback functionality) to be accessible via PHP $_GET[] arguments.

So, sorry not to have moved off โ€œtoolโ€ (web application) work today, but it is very important to try to think of most/all eventualities you can imagine, ahead of the time when you get to the integration tasks the other way around, that is, the integration from the viewpoint of the software acting as โ€œparentโ€ or โ€œco-operative peerโ€ to your Calendar (event) โ€œtoolโ€ web application.

The reshaped PHP code now additionally catering for email โ€œmessagingโ€ functionality you could call ics_attachmentโšซphp, which changed in thisway, able to be run with this liveโœ‚run link. We hope you try out the new email functionality yourself.


Previous relevant Calendar iCal Integration Timezone Tutorial is shown below.

Calendar iCal Integration Timezone Tutorial

Calendar iCal Integration Timezone Tutorial

You might have thought with yesterdayโ€™s Calendar iCal Integration Primer Tutorialโ€˜s emphasis on timezones weโ€™d have โ€ฆ

  • had too much
  • seen too little
  • invited Goldilocks for some porridge

โ€ฆ but time is quite a complex scenario on Earth, when it comes to timezones for at least two reasons, one being a functional improvement, and one being to fix a bug, that being โ€ฆ

  1. things like WebEx or Skype or GoTo Meeting are not tied down by geography and you may want Calendar functionality to reflect this, or you may also want it to cater for airplane departure and arrival times in various timezones around the world, and it would be best if the HTML form user entry phase catered for a user specifying a date and time not necessarily in either of their local timezone nor the GMT timezone (of the iCal โ€œZโ€ property special interest) โ€ฆ is the functional improvement, whereas โ€ฆ
  2. we had a bug, leaving off from yesterdayโ€™s work with timezones whose GMT offset involved half hour differences โ€ฆ and yes, that happens quite often โ€ฆ and the bug will occur as of yesterdayโ€™s code when you come to use those PHP DateTime object add and/or sub methods where the PT[offset]H argument has an [offset] involving a decimal point, so it behoves us to update that relevant PHP code snippet for you, again, below, regarding that (and remind โ€ฆ forgot yesterday โ€ฆ that $ts variable is a user HTML form passed date and time) โ€ฆ


    $di="PT" . str_replace("-","",("" . $start_end_offsets[$thisi])) . "H";

    $parsed_date = DateTime::createFromFormat('Ymd:His', $ts);

    if (strpos(("" . $start_end_offsets[$thisi]), "-") !== false) {

    if (strpos($di, ".") !== false) {

    $parsed_date->sub(new DateInterval(explode(".",$di)[0] . "H"));

    $parsed_date->sub(new DateInterval("PT30M"));

    } else {

    $parsed_date->sub(new DateInterval($di));

    }

    } else {

    if (strpos($di, ".") !== false) {

    $parsed_date->add(new DateInterval(explode(".",$di)[0] . "H"));

    $parsed_date->add(new DateInterval("PT30M"));

    } else {

    $parsed_date->add(new DateInterval($di));

    }

    }

    $outts = $parsed_date->format('Ymd:His');

Now allowing for the first idea above is not as involved as you may think, but only if you think serverside PHP, rather than think it will be easy with clientside Javascript. And what makes it a doddle, generally, are all those Open Source contributors to knowledge out there, and those great computing program language documenters out there exemplified in their brilliance with this totally useful link to the PHP timezone_identifiers_list and PHP DateTimeZone object method getOffset method links. So we allow the user to enter any of โ€ฆ

  • Local
  • GMT
  • Any of the half hour timezone numerical offset (indicators) from -24 to 24
  • Any of the timezone names as per those PHP methods above, with valid continental prefix names

โ€ฆ to define the start and end date and time parameters to express for their Calendar iCal Event that they define. Along the way we also add in dropdowns and HTML input type=number (year) elements to help for those not so keen on keyboard entry.

Guess youโ€™d say we are still on the โ€œtoolโ€ feel of the web application, but aim to move more on the โ€œintegrationโ€ front into the future.

Here is the renewed PHP code you could call ics_attachmentโšซphp, that changed in thisway, able to be run with this liveโœ‚run link. We hope you try it out for yourself, especially as weโ€™ve added some Google Chart Map Chart linking of the โ€œwhenโ€ and โ€œwhereโ€ of defined timezone thinking, via the use of PHPโ€™s DateTimeZone object method getLocation, as you can see happening with todayโ€™s tutorial picture.


Previous relevant Calendar iCal Integration Primer Tutorial is shown below.

Calendar iCal Integration Primer Tutorial

Calendar iCal Integration Primer Tutorial

Do you remember us talking about the ICS extension file when we presented WebEx Prerecording Primer Tutorial as shown below? It is an integration input to working with iCal Calendar software.

So here we are at a โ€œwhenโ€ of life tutorial, which is always an interesting exercise in our book. And โ€œbookโ€ could be the go for an application to use this type of functionality. When you โ€œbookโ€ something, youโ€™d often want to remind yourself and/or others of such an event. But for now, we are concentrating on making a โ€œtoolโ€ type of web application that will suit future purposes.

Weโ€™ve built a web application around the useful logic presented in this great Git repository today, writing our code in PHP, because you are dealing with header manipulation here centering around โ€ฆ



header('Content-type: text/calendar; charset=utf-8');

header('Content-Disposition: attachment; filename=rjmprogramming-event.ics');

echo $ical;

โ€ฆ where the PHP variable $ical contents has been pieced together in response to a callback from an earlier HTML form execution of the same ics_attachmentโšซphp code where the necessary details are collected off the user.

If you try the liveโœ‚run youโ€™ll probably glean that most of our concern centered around the date and time, regarding timezone use so that we โ€ฆ

  • in the HTML form execution we use client Javascript to glean the local timezone and local date and time to default the form appropriately โ€ฆ so that โ€ฆ
  • in the HTML form execution the user fills out Calendar Event start and end times with respect to local time and this, along with an offset to get these times back to UTC or (Greenwich Mean Time) are passed to the callback web application (which is the same web application) โ€ฆ so that โ€ฆ
  • the second callback execution constructs the iCal (for an rjmprogramming-event.ics attachment) with these UTC (or GMT) date and times in mind, whereby the โ€œZโ€ timezone parameter fits the bill nicely โ€ฆ and when โ€ฆ
  • the user saves this rjmprogramming-event.ics event into the iCal Calendar application, where the event will be shown back relative to the local date and time

The date and time functions used to make this happen are โ€ฆ

  1. Javascriptโ€™s Date object โ€ฆ


    var dd=new Date();

    var qw=eval((eval(dd.toTimeString().replace('-',' ').replace('+',' ').split(' ')[2]) - eval(dd.toTimeString().replace('-',' ').replace('+',' ').split(' ')[2] % 100)) / 100) + eval((0.0 + eval(dd.toTimeString().replace('-',' ').replace('+',' ').split(' ')[2] % 100)) / 60.0);

    if (dd.toTimeString().indexOf('+') != -1) qw=-qw;

    document.getElementById('tz').value=qw;

  2. Javascriptโ€™s Date objectโ€™s toTimeString method (as shown above) to glean the local timezone offset, and its opposite
  3. PHPโ€™s DateTime object โ€ฆ


    $di="PT" . str_replace("-","",urldecode($_POST['tz'])) . "H";

    $parsed_date = DateTime::createFromFormat('Ymd:His', $ts);

    if (strpos(urldecode($_POST['tz']), "-") !== false) {

    $parsed_date->sub(new DateInterval($di));

    } else {

    $parsed_date->add(new DateInterval($di));

    }

    $outts = $parsed_date->format('Ymd:His');

  4. PHPโ€™s DateTime objectโ€™s createFromFormat constructor method (as above) to create a DateTime object from the passed through user details
  5. PHPโ€™s DateInterval object
  6. PHPโ€™s DateTime objectโ€™s add and/or sub methods (as above) to create a DateTime object with a DateInterval offset to UTC (or GMT) (expressed in hours)
  7. PHPโ€™s DateInterval objectโ€™s format method (as above) to end up with a UTC (or GMT) expression of date and time to be placed into the rjmprogramming-event.ics iCal message

Weโ€™ll probably be revisiting with improvements soon, but we hope you try it for yourself.


Previous relevant WebEx Prerecording Primer Tutorial is shown below.

WebEx Prerecording Primer Tutorial

WebEx Prerecording Primer Tutorial

Weโ€™ve been trying out WebEx (by Cisco) prerecording as a video conferencing idea as an alternative to โ€ฆ

โ€ฆ regarding video conferencing products weโ€™ve tried at this blog.

Have to say, WebEx is great, even with respect to the โ€œwide eyed and bushy tailedโ€ reaction โ€œthis little black duckโ€ has to all these networky communicaty ideas on the net (at least we spelt โ€œnetโ€ correctly).

Have to thank my wife, Maree, for her expertise and the facilities her company, Thomson Reuters, supplies for the serving of WebEx recordings โ€ฆ thanks everyone. Have been assured they are periodically deleted, and my lame impersonations of the old โ€œducks on the wallโ€ can rest in peace shortly.

And so, we have a slideshow starting with a WebEx email link to join a meeting, and we pan down the email to show you other WebEx functionalities, such as adding a Calendar reference to the meeting time, and though we havenโ€™t shown you detail here, rest assured it handles timezone scenarios very well, unless you lie about living in Antarctica, that is โ€ฆ sorry, scientists in Antarctica reading this blog posting โ€ฆ all 237 of you.

During this โ€œearlier than today exploration of WebExโ€ session the necessary software installs just happened for this MacBook Pro Mac OS X laptop as if we were shelling peas โ€ฆ itโ€™s always good to have some handy when installing any software. So we wonโ€™t show you this unless we deem it essential at a later date. You can perhaps do as I did, and ask a real WebEx user invite you to a meeting, to set yourself up. In fact, todayโ€™s session meeting creation time you may notice is well in the past from that earlier introductory learning session Maree and I had, and you can bring back up that old email, and resurrect that meeting again and again, if you like โ€ฆ am not sure if there is an expiry date on this too, like with server stored WebEx prerecordings.

So also rest assured, WebEx handles โ€ฆ

  • video via webcam on your device
  • audio via microphone on your device (โ€œUse Computerโ€) or via a phone line
  • the synchronization of the two above
  • mobile devices

Did you know?

A .ics extension file, as you can see being used as an email attachment file extension in Extension .ics is, as explained in this linkโ€˜s sublink โ€ฆ

ICS is a global format for calendar files widely being utilized by various calendar and email programs including Google Calendar, Apple iCal, and Microsoft Outlook. These files enable users to share and publish information directly from their calendars over email or via uploading it to the world wide web.

โ€ฆ as helping interface meetings to online calendar appointments. Cute, huh?!

If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.

This entry was posted in eLearning, Event-Driven Programming, Tutorials and tagged , , , , , , , , , , , , , , , , , , , , , , , , , . Bookmark the permalink.

14 Responses to Calendar iCal Integration WordPress Tutorial

Leave a Reply

Your email address will not be published. Required fields are marked *