This repository was archived by the owner on Nov 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathreadme.txt
More file actions
100 lines (70 loc) · 2.71 KB
/
readme.txt
File metadata and controls
100 lines (70 loc) · 2.71 KB
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
=== rtLib [](https://travis-ci.org/rtCamp/rt-lib) ===
Contributors: rtcamp, rahul286, dipeshkakadiya, utkarshpatel, faishal, desaiuditd
Tags: library, autoloader, database model, database updater, attributes, user groups
Requires at least: 3.6
Tested up to: 4.1
Stable tag: master
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
== Description ==
rtLib is library of class that are required in development of any WordPress plugins.
Following are some classes:
* RT_DB_Model
* RT_DB_Update
* RT_Plugin_Info
* RT_Plugin_Update_Checker
* RT_WP_Autoloader
* RT_Theme_Update_Checker
* RT_Email_Template
* RT_Attributes
**NOTE**: Development in progress
Inspired from https://github.com/zendframework/zf2/tree/master/library/Zend/
To add it in your plugin/theme
```
git subtree add --prefix app/lib https://github.com/rtCamp/rt-lib.git master --squash
```
To update the library
```
git subtree pull --prefix app/lib https://github.com/rtCamp/rt-lib.git master --squash
```
Add following line in plugin loader file
```
include_once 'app/lib/rt-lib.php';
```
Alternatively you can add as a plugin also
** License **
Same [GPL] (http://www.gnu.org/licenses/gpl-2.0.txt) that WordPress uses!
**Coming soon:**
* Private Attributes Support
**See room for improvement?**
Great! There are several ways you can get involved to help make Stream better:
1. **Report Bugs:** If you find a bug, error or other problem, please report it! You can do this by [creating a new topic](https://github.com/rtCamp/rt-lib/issues) in the issue tracker.
2. **Suggest New Features:** Have an awesome idea? Please share it! Simply [create a new topic](https://github.com/rtCamp/rt-lib/issues) in the issure tracker to express your thoughts on why the feature should be included and get a discussion going around your idea.
== Changelog ==
= 1.5 =
* Mailbox filters added
* Logging error updated
* Term meta migration added and function updated for WordPress 4.4 support
* Cron updated
* Email Message id and reference id logic added for mailbox thread
= 1.4 =
* Mailbox bug fixes
* Mailbox inline images fix
= 1.3 =
* Mailbox Library Refactor
* Importer Library Refactor
= 1.2 =
* Mailbox Library
= 0.9 =
* Rt_Products Refactor & Bug Fixes
= 0.8 =
* RT Product Sync Library Added
* Travis Config updated for WordPress Coding Standards
* User Group Bug Fixes & additional method added to get users by term id.
= 0.7 =
* A Few bug fixes for RT_LIB_FILE constant
* DB Update Key changed for User Groups
= 0.6 =
* Test Cases updated & Code Sniffer Config updated & pre-commit hook updated
= 0.5 =
* Initial Basic Libraries.