Plugin Directory

Changeset 1181502


Ignore:
Timestamp:
06/15/2015 11:50:51 PM (11 years ago)
Author:
guavaworks
Message:

v1.1 - adding shortcode

Location:
chat-rooms-powered-by-firebase/trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • chat-rooms-powered-by-firebase/trunk/firebase-chatroom.php

    r1149077 r1181502  
    44* Plugin URI: http://www.roysivan.com
    55* Description: Using Firebase to create chat rooms
    6 * Version: 1.0.0
     6* Version: 1.1
    77* Author: Roy Sivan
    88* Author URI: http://www.roysivan.com
     
    1818require 'inc/admin-menu.php';
    1919require 'inc/chatroom-template.php';
     20require 'inc/shortcodes.php';
    2021
    2122class fire_chat {
     
    2728        new chat_admin_menu();
    2829        new _chatroom_tpl();
     30       
     31        $shortcode = new chatroom_shortcode();
     32        $shortcode->__init();
    2933       
    3034    }
  • chat-rooms-powered-by-firebase/trunk/readme.txt

    r1149077 r1181502  
    44Tags: angularjs, client side, single page application, chat, chat room, chatroom, firebase
    55Requires at least: 3.9
    6 Tested up to: 4.2.1
    7 Stable tag: 1
     6Tested up to: 4.1.1
     7Stable tag: 1.1
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    1515Powered 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!
    1616 
    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__
    2119
    2220
     
    3634AngularJS 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
    3735then 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  
    4536
    4637== Screenshots ==
     
    5243= 1.0 =
    5344* Initial Build
     45
     46= 1.1 =
     47* Adding Shortcode
Note: See TracChangeset for help on using the changeset viewer.