Changeset 1181502
- Timestamp:
- 06/15/2015 11:50:51 PM (11 years ago)
- Location:
- chat-rooms-powered-by-firebase/trunk
- Files:
-
- 1 added
- 2 edited
-
firebase-chatroom.php (modified) (3 diffs)
-
inc/shortcodes.php (added)
-
readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
chat-rooms-powered-by-firebase/trunk/firebase-chatroom.php
r1149077 r1181502 4 4 * Plugin URI: http://www.roysivan.com 5 5 * Description: Using Firebase to create chat rooms 6 * Version: 1. 0.06 * Version: 1.1 7 7 * Author: Roy Sivan 8 8 * Author URI: http://www.roysivan.com … … 18 18 require 'inc/admin-menu.php'; 19 19 require 'inc/chatroom-template.php'; 20 require 'inc/shortcodes.php'; 20 21 21 22 class fire_chat { … … 27 28 new chat_admin_menu(); 28 29 new _chatroom_tpl(); 30 31 $shortcode = new chatroom_shortcode(); 32 $shortcode->__init(); 29 33 30 34 } -
chat-rooms-powered-by-firebase/trunk/readme.txt
r1149077 r1181502 4 4 Tags: angularjs, client side, single page application, chat, chat room, chatroom, firebase 5 5 Requires at least: 3.9 6 Tested up to: 4. 2.17 Stable tag: 1 6 Tested up to: 4.1.1 7 Stable tag: 1.1 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 15 15 Powered by the [AngularJS for WP](https://wordpress.org/plugins/angularjs-for-wp/) plugin and [Firebase](https://www.firebase.com), add real time communication to your site, for free. Create a new chat room (custom post type) and off you go! 16 16 17 Want to know how its coded? [Here is the article that I wrote while writing it](http://www.roysivan.com/using-firebase-and-wp-api-wordpress/#.VPkv4YF4qD4) 18 [Chat Demo](http://roysivan.com/angularjs-for-wordpress/chat-rooms/roys-awesome-chat-room) 19 20 Issues can be posted in these Support Forums or on [GitHub](https://github.com/royboy789/wordpress-firebase-chat) 17 *Fully CSS customizable 18 *Template powered - __coming soon__ 21 19 22 20 … … 36 34 AngularJS renders your posts client-side. WordPress is built on PHP, so every page a user visits is converted to HTML on the server, then served to the client. With ANgularJS you are only getting a JSON Object (text) from the server 37 35 then renderring that to HTML using the client's machine. This will speed up your pages as well as allow for more concurrent visitors to your site as the strain on the server is reduced. 38 39 = What is Firebase? =40 41 [Firebase](http://www.firebase.com), is probably one of the best things to happen to web development. It is a way for a front end developer like me to quickly spin up an application and connect it to a JSON object that lives online. It is awesome.42 43 Sign up for a free account to use this plugin.44 45 36 46 37 == Screenshots == … … 52 43 = 1.0 = 53 44 * Initial Build 45 46 = 1.1 = 47 * Adding Shortcode
Note: See TracChangeset
for help on using the changeset viewer.