| 作: | @voluntas |
|---|---|
| バージョン: | 1.0.1 |
| URL: | https://voluntas.github.io/ |
2015 年 1 月 12 日に行われた 「テレビ連動サーバー」勉強会 向けの発表資料です。
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script data-main="usage" src="http://requirejs.org/docs/release/1.0.8/comments/require.js"></script> | |
| </head> | |
| <body> | |
| <p>Check your JavaScript console for output!</p> | |
| </body> | |
| </head> |
| $('.fancybox').fancybox({ | |
| afterLoad: function(e) { | |
| $(e.inner).find('iframe').attr({ | |
| 'webkitallowfullscreen': true, | |
| 'mozallowfullscreen': true | |
| }); | |
| } | |
| }); |
| <?php | |
| // API access key from Google API's Console | |
| define( 'API_ACCESS_KEY', 'YOUR-API-ACCESS-KEY-GOES-HERE' ); | |
| $registrationIds = array( $_GET['id'] ); | |
| // prep the bundle | |
| $msg = array |
| ######################## | |
| # Wordpress Core files # | |
| ######################## | |
| wp-admin/ | |
| wp-content/backups/ | |
| wp-content/blogs.dir/ | |
| wp-content/languages/ | |
| wp-content/index.php | |
| wp-content/themes/index.php | |
| wp-includes/ |
| license: mit |
| <!DOCTYPE html> | |
| <html class="no-js{{ empty($class) ? '' : ' ' . $class }}" lang="pt-br" xmlns:ng="http://angularjs.org" id="ng-app"> | |
| <head> | |
| <title>{{ empty($title) ? '' : $title . ' | ' }}{{ Config::get('business.site_name') }}</title> | |
| <!-- Meta --> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="robots" content="index, follow"> |
| <?php | |
| /** | |
| * Redirect users to custom URL based on their role after login | |
| * | |
| * @param string $redirect | |
| * @param object $user | |
| * @return string | |
| */ | |
| function wc_custom_user_redirect( $redirect, $user ) { | |
| // Get the first of all the roles assigned to the user |
| 作: | @voluntas |
|---|---|
| バージョン: | 1.0.1 |
| URL: | https://voluntas.github.io/ |
2015 年 1 月 12 日に行われた 「テレビ連動サーバー」勉強会 向けの発表資料です。