ども、こんにちは。開発部のいろはです!
Googleカレンダーはiframeでサイトへ簡単に埋め込むことができますが、
通常のカラーは水色となっており、サイトに合わせて見た目の色を変更したいことがあると思います。
そんな時に便利なのが「gcalendar-wrapper.php」という
簡単にテキストカラーや背景色などを変更出来るスクリプトです。
元々はこんなデザインですが・・・
見た目をこんなデザインに変更することができちゃいます!!
・・・ということで、今回はこのgcalendar-wrapper.phpの使い方についてご紹介いたします!
Contents
gcalendar-wrapper.phpを準備する
—–2019.02.20更新—–
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 |
<?php /** * Embedded Google Calendar customization wrapper script * * Applies a custom color scheme to an embedded Google Calendar. * * Usage: * * Replace standard Google Calendar embedding code, e.g.: * * <iframe src="https://www.google.com/calendar/embed?src=..."></iframe> * * with a reference to this script: * * <iframe src="gcalendar-wrapper.php?src=..."></iframe> * * @author Chris Dornfeld <dornfeld (at) unitz.com> * @version $Id: gcalendar-wrapper.php 1571 2010-11-15 07:08:05Z dornfeld $ * @link http://www.unitz.com/gcalendar-wrapper/ */ /** * Set your color scheme below */ $calColorBgDark = '#ffa200'; // dark background color $calColorTextOnDark = '#ffffff'; // text appearing on top of dark bg color $calColorBgLight = '#ffeccb'; // light background color $calColorTextOnLight = '#000000'; // text appearing on top of light bg color $calColorBgToday = '#fef0ff'; // background color for "today" box /** * Orange color scheme */ /* $calColorBgDark = '#ffa200'; $calColorTextOnDark = '#ffffff'; $calColorBgLight = '#ffeccb'; $calColorTextOnLight = '#000000'; $calColorBgToday = '#fef0ff'; */ /** * Purple color scheme */ /* $calColorBgDark = '#4b53a1'; $calColorTextOnDark = '#ffffff'; $calColorBgLight = '#d0cfff'; $calColorTextOnLight = '#000000'; $calColorBgToday = '#fff2cf'; */ /** * Green color scheme */ /* $calColorBgDark = '#336633'; $calColorTextOnDark = '#ffffff'; $calColorBgLight = '#ace0ac'; $calColorTextOnLight = '#003300'; $calColorBgToday = '#ffe5ac'; */ /** * Google Calendar default color scheme (simplified) */ /* $calColorBgDark = '#c3d9ff'; $calColorTextOnDark = '#000000'; $calColorBgLight = '#e8eef7'; $calColorTextOnLight = '#000000'; $calColorBgToday = '#ffffcc'; */ /** * For normal use, no changes are needed below this line */ define('GOOGLE_CALENDAR_BASE', 'https://www.google.com/'); define('GOOGLE_CALENDAR_EMBED_URL', GOOGLE_CALENDAR_BASE . 'calendar/embed'); /** * Prepare stylesheet customizations */ $calCustomStyle =<<<EOT /* misc interface */ .cc-titlebar { background-color: {$calColorBgLight} !important; } .date-picker-arrow-on, .drag-lasso, .agenda-scrollboxBoundary { background-color: {$calColorBgDark} !important; } td#timezone { color: {$calColorTextOnDark} !important; } /* tabs */ td#calendarTabs1 div.ui-rtsr-selected, div.view-cap, div.view-container-border { background-color: {$calColorBgDark} !important; } td#calendarTabs1 div.ui-rtsr-selected { color: {$calColorTextOnDark} !important; } td#calendarTabs1 div.ui-rtsr-unselected { background-color: {$calColorBgLight} !important; color: {$calColorTextOnLight} !important; } /* week view */ table.wk-weektop, th.wk-dummyth { /* days of the week */ background-color: {$calColorBgDark} !important; } div.wk-dayname { color: {$calColorTextOnDark} !important; } div.wk-today { background-color: {$calColorBgLight} !important; border: 1px solid #EEEEEE !important; color: {$calColorTextOnLight} !important; } td.wk-allday { background-color: #EEEEEE !important; } td.tg-times { background-color: {$calColorBgLight} !important; color: {$calColorTextOnLight} !important; } div.tg-today { background-color: {$calColorBgToday} !important; } /* month view */ table.mv-daynames-table { background-color: {$calColorBgDark} !important; /* days of the week */ color: {$calColorTextOnDark} !important; } td.st-bg, td.st-dtitle { /* cell borders */ border-left: 1px solid {$calColorBgDark} !important; } td.st-dtitle { /* days of the month */ background-color: {$calColorBgLight} !important; color: {$calColorTextOnLight} !important; /* cell borders */ border-top: 1px solid {$calColorBgDark} !important; } td.st-bg-today { background-color: {$calColorBgToday} !important; } /* agenda view */ div.scrollbox { border-top: 1px solid {$calColorBgDark} !important; border-left: 1px solid {$calColorBgDark} !important; } div.underflow-top { border-bottom: 1px solid {$calColorBgDark} !important; } div.date-label { background-color: {$calColorBgLight} !important; color: {$calColorTextOnLight} !important; } div.event { border-top: 1px solid {$calColorBgDark} !important; } div.day { border-bottom: 1px solid {$calColorBgDark} !important; } EOT; $calCustomStyle = '<style type="text/css">'.$calCustomStyle.'</style>'; /** * Construct calendar URL */ $calQuery = ''; if (isset($_SERVER['QUERY_STRING'])) { $calQuery = $_SERVER['QUERY_STRING']; } else if (isset($HTTP_SERVER_VARS['QUERY_STRING'])) { $calQuery = $HTTP_SERVER_VARS['QUERY_STRING']; } $calUrl = GOOGLE_CALENDAR_EMBED_URL.'?'.$calQuery; /** * Retrieve calendar embedding code */ $calRaw = ''; if (in_array('curl', get_loaded_extensions())) { $curlObj = curl_init(); curl_setopt($curlObj, CURLOPT_URL, $calUrl); curl_setopt($curlObj, CURLOPT_RETURNTRANSFER, 1); // trust any SSL certificate (we're only retrieving public data) curl_setopt($curlObj, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($curlObj, CURLOPT_SSL_VERIFYHOST, FALSE); if (function_exists('curl_version')) { $curlVer = curl_version(); if (is_array($curlVer)) { if (!in_array('https', $curlVer['protocols'])) { trigger_error("Can't use https protocol with cURL to retrieve Google Calendar", E_USER_ERROR); } if (!empty($curlVer['version']) && version_compare($curlVer['version'], '7.15.2', '>=') && !ini_get('open_basedir') && !ini_get('safe_mode')) { // enable HTTP redirect following for cURL: // - CURLOPT_FOLLOWLOCATION is disabled when PHP is in safe mode // - cURL versions before 7.15.2 had a bug that lumped // redirected page content with HTTP headers // http://simplepie.org/support/viewtopic.php?id=1004 curl_setopt($curlObj, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($curlObj, CURLOPT_MAXREDIRS, 5); } } } $calRaw = curl_exec($curlObj); curl_close($curlObj); } else if (ini_get('allow_url_fopen')) { if (function_exists('stream_get_wrappers')) { if (!in_array('https', stream_get_wrappers())) { trigger_error("Can't use https protocol with fopen to retrieve Google Calendar", E_USER_ERROR); } } else if (!in_array('openssl', get_loaded_extensions())) { trigger_error("Can't use https protocol with fopen to retrieve Google Calendar", E_USER_ERROR); } // fopen should follow HTTP redirects in recent versions $fp = fopen($calUrl, 'r'); while (!feof($fp)) { $calRaw .= fread($fp, 8192); } fclose($fp); } else { trigger_error("Can't use cURL or fopen to retrieve Google Calendar", E_USER_ERROR); } /** * Insert BASE tag to accommodate relative paths */ $titleTag = '<title>'; $baseTag = '<base href="'.GOOGLE_CALENDAR_EMBED_URL.'">'; $calCustomized = preg_replace("/".preg_quote($titleTag,'/')."/i", $baseTag.$titleTag, $calRaw); /** * Insert custom styles */ $headEndTag = '</head>'; $calCustomized = preg_replace("/".preg_quote($headEndTag,'/')."/i", $calCustomStyle.$headEndTag, $calCustomized); /** * Extract and modify calendar setup data */ $calSettingsPattern = "(\{\s*window\._init\(\s*)(\{.+\})(\s*\)\;\s*\})"; if (preg_match("/$calSettingsPattern/", $calCustomized, $matches)) { $calSettingsJson = $matches[2]; $pearJson = null; if (!function_exists('json_encode')) { // no built-in JSON support, attempt to use PEAR::Services_JSON library if (!class_exists('Services_JSON')) { require_once('Services/JSON.php'); } $pearJson = new Services_JSON(); } if (function_exists('json_decode')) { $calSettings = json_decode($calSettingsJson); } else { $calSettings = $pearJson->decode($calSettingsJson); } // set base URL to accommodate relative paths $calSettings->baseUrl = GOOGLE_CALENDAR_BASE; // splice in updated calendar setup data if (function_exists('json_encode')) { $calSettingsJson = json_encode($calSettings); } else { $calSettingsJson = $pearJson->encode($calSettings); } // prevent unwanted variable substitutions within JSON data // preg_quote() results in excessive escaping $calSettingsJson = str_replace('$', '\\$', $calSettingsJson); $calCustomized = preg_replace("/$calSettingsPattern/", "\\1$calSettingsJson\\3", $calCustomized); } /** * Show output */ header('Content-type: text/html'); print $calCustomized; |
オリジナルソースはunitz.com様より取得いたしました。
上記をコピーして「gcalendar-wrapper.php」という名前で保存します。
※レンタルサーバーwpXではgcalendar-wrapper.phpは使用できないようです
使用方法
1:gcalendar-wrapper.phpの編集
23〜30行目の”Set your color scheme below”を変更することで
カレンダーをお好みの色にチェンジすることができます!
1. $calColorBgDark :背景色を変更します
2. $calColorTextOnDark :曜日の文字色を変更します
3. $calColorBgLight :各日にちの背景色を変更します
4. $calColorTextOnLight :各日にちの文字色を変更します
5. $calColorBgToday :当日の枠の色を変更します
ファイルの編集後サーバーにgcalendar-wrapper.phpを設置します。
WordPressで使用する場合は下記ディレクトリに配置します。
1 |
wp-content/themes/ファイル名/gcalendar-wrapper.php |
2:Googleカレンダーの共有設定をする
Googleカレンダーの詳細ページに行き、
「このカレンダーを一般公開する」にチェックをします。
予定内容を公開せず、時間のみ表示したい場合は、
「予定の時間枠のみを一般に公開」を選択します。
チェックしたら保存をクリックします。
3:埋め込みコードを取得する
Googleカレンダー埋め込み支援ツール(https://calendar.google.com/calendar/embedhelper)
などにアクセスして、埋め込みコードを取得します。
すると次のようなコードが表示されるかと思います。
1 |
<iframe src="https://calendar.google.com/calendar/embed?height=600&wkst=1&bgcolor=%23FFFFFF" style="border-width:0" width="800" height="600" frameborder="0" scrolling="no"></iframe> |
この中の「src=”https://calender.google.com/calendar/embed?」 の部分を
「アップロードした場所へのパス/gcalendar-wrapper.php?」 に書き換えます。
WordPressの場合はこのようになります。
1 |
<iframe src="ドメイン名/wp-content/themes/ファイル名/gcalendar-wrapper.php?height=600&wkst=1&bgcolor=%23FFFFFF&src=xxxxxxxxx&color=%23711616&ctz=Asia%2FTokyo" style=" border-width:0 " width="800" height="600" frameborder="0" scrolling="no"></iframe> |
4:そのほか(2019.02.14更新)
埋め込みのカレンダー内にsrcタグを埋め込むことで複数のカレンダー情報を表示させることができます。
例えばこんな感じ↓
1 |
<iframe src="ドメイン名/wp-content/themes/ファイル名/gcalendar-wrapper.php?height=600&wkst=1&bgcolor=%23FFFFFF&src=xxx;color=%236E6E41&src=yyy;color=%23691426&ctz=Asia/Tokyo"></iframe> |
ただし3つ以上のカレンダーを埋め込んだ場合、3つ目からはカレンダーのカラー変更は適応されなくなるのでご注意ください。
あとはこの埋め込みコードが入ったHTMLファイルをアップロードで完成です!
使ってみると雰囲気がガラッと変化するかもしれませんね!
お疲れ様でしたノシ