Skip to content

Commit 4c716e3

Browse files
authored
Merge pull request #2 from codeboxrcodehub/dev
merge to master
2 parents 5bfa2f8 + 945bfd4 commit 4c716e3

File tree

4 files changed

+78
-1
lines changed

4 files changed

+78
-1
lines changed

LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 PhpSpreadsheet Authors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Open source Taxonomy plugin
2+
3+
## Description
4+
Open source plugin for creating category and tag. In this plugin we have used custom table for creating the categories and tags so that it uses less resource.
5+
6+
Software requirements
7+
8+
The following software is required to develop using CBXTaxonomy:
9+
10+
* PHP version 7.4 or newer
11+
12+
13+
## Installation
14+
15+
1. Download the latest zip from [here](https://github.com/codeboxrcodehub/cbxwptaxonomy/releases)
16+
2. WordPress has clear documentation about [how to install a plugin](https://codex.wordpress.org/Managing_Plugins)
17+
3. After install activate the plugin "CBX Taxonomy" through the 'Plugins' menu in WordPress
18+
4. This plugin doesn't load any library by default, it doesn't create extra folder or menu.
19+
20+
## Licence
21+
22+
[MIT](https://github.com/codeboxrcodehub/cbxwptaxonomy/blob/master/LICENSE.txt)

README.txt

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
=== CBX Taxonomy Library ===
2+
Contributors: codeboxr, manchumahara
3+
Requires at least: 3.5
4+
Tested up to: 6.4.3
5+
Stable tag: 1.0.5
6+
License: MIT
7+
License URI: https://github.com/codeboxrcodehub/cbxwptaxonomy/blob/master/LICENSE.txt
8+
9+
Open source Taxonomy plugin
10+
11+
== Description ==
12+
13+
Open source plugin for creating category and tag. In this plugin we have used custom table for creating the categories and tags so that it uses less resource.
14+
15+
Software requirements
16+
17+
The following software is required to develop using CBXTaxonomy:
18+
19+
* PHP version 7.4 or newer
20+
21+
22+
23+
== Installation ==
24+
25+
1. Download the latest zip from here (https://github.com/codeboxrcodehub/cbxwptaxonomy/releases)
26+
2. [WordPress has clear documentation about how to install a plugin].(https://codex.wordpress.org/Managing_Plugins)
27+
3. After install activate the plugin "CBX Taxonomy" through the 'Plugins' menu in WordPress
28+
4. This plugin doesn't load any library by default, it doesn't create extra folder or menu.
29+
30+
31+
== Changelog ==
32+
33+
= 1.0.0 =
34+
* First public release

includes/CBXTaxonomy.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function __construct()
4141
//$this->unit_testing();
4242
$this->load_orm();
4343
$this->load_plugin_textdomain();
44-
$this->hooks = new Hooks();
44+
new Hooks();
4545
}//end of method constructor
4646

4747
/**

0 commit comments

Comments
 (0)