-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from codeboxrcodehub/dev
merge to master
- Loading branch information
Showing
536 changed files
with
175,419 additions
and
49,163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2019 PhpSpreadsheet Authors | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
CBX Career Dev Toolkit | ||
|
||
## Description | ||
|
||
This plugin provides command line interface for creating dummy job and resume. | ||
|
||
## Installation | ||
|
||
1. Download the latest zip from [here](https://github.com/codeboxrcodehub/cbxcareertoolkit/releases) | ||
2. WordPress has clear documentation about [how to install a plugin.](https://codex.wordpress.org/Managing_Plugins) | ||
3. After install activate the plugin "CBX Career Dev Toolkit Library" through the 'Plugins' menu in WordPress | ||
4. This plugin doesn't load any library by default, it doesn't create extra folder or menu. | ||
|
||
# How to use: | ||
|
||
## cbxjob | ||
|
||
### All possible default params: | ||
|
||
``` | ||
wp cbxjob-generate --total=100 --status=publish --is-remote=0 --is-featured=1 --is-filled=0 --user-id=1 --salary-unit=monthly --currency=USD | ||
``` | ||
|
||
total = number of jobs to be created. | ||
|
||
status options = [draft , pending , publish,unpublished,flag ] | ||
|
||
is-remote = [0,1] | ||
|
||
is-featured= [0,1] | ||
|
||
is-filled= [0,1] | ||
|
||
currency=[USD,BDT, etc] | ||
|
||
salary-unit =[yearly,monthly,yearly,daily] | ||
|
||
user-id = user ID | ||
|
||
## cbxresume | ||
|
||
### All possible default params: | ||
|
||
``` | ||
wp cbxjresume-generate --total=100 --user-id=1 --status=1 --privacy=public --is-primary=1 | ||
``` | ||
|
||
total = number of resume to be created. | ||
|
||
user-id= system user id | ||
|
||
status = [0=draft, 1=publish, 2=unpublished, 3=pending, 4=flag] | ||
|
||
privacy= [public,private] | ||
|
||
is-primary= [0,1] | ||
|
||
## Licence | ||
|
||
[MIT](https://github.com/codeboxrcodehub/cbxcareertoolkit/blob/master/LICENSE.txt) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
=== CBX Career Toolkit Library === | ||
Contributors: codeboxr, manchumahara | ||
Requires at least: 3.5 | ||
Tested up to: 6.4.3 | ||
Stable tag: 1.0.0 | ||
License: MIT | ||
License URI: https://github.com/codeboxrcodehub/cbxcareertoolkit/blob/master/LICENSE.txt | ||
|
||
Open source PhpSpreadSheet php library released as wordpress plugin to use easily | ||
|
||
== Description == | ||
|
||
A pure [PHP library for reading and writing spreadsheet files](https://phpspreadsheet.readthedocs.io) | ||
|
||
From Codeboxr we wrapped the library as wordpress plugin to easy distribute as wordpress plugin. WordPress now doesn't allow this type library as | ||
plugin but providing a large php package with plugin makes the plugin heavy and troublesome for updates. We hosted this in github so that user can download and later | ||
update easily. | ||
|
||
Software requirements | ||
|
||
The following software is required to develop using PhpSpreadsheet: | ||
|
||
* PHP version 7.4 or newer | ||
* PHP extension php_zip enabled | ||
* PHP extension php_xml enabled | ||
* PHP extension php_gd2 enabled (if not compiled in) | ||
|
||
|
||
The plugin check php version, php_zip, php_xml and php_gd2 library compatible or installed or not, based on success it activated. | ||
|
||
How to use: | ||
|
||
` | ||
if ( defined('CBXPHPSPREADSHEET_PLUGIN_NAME') && file_exists( CBXPHPSPREADSHEET_ROOT_PATH . 'lib/vendor/autoload.php' ) ) { | ||
//Include PHPExcel | ||
require_once( CBXPHPSPREADSHEET_ROOT_PATH . 'lib/vendor/autoload.php' ); | ||
|
||
//now take instance | ||
$objPHPExcel = new \PhpOffice\PhpSpreadsheet\Spreadsheet(); | ||
|
||
//do whatever you need to do | ||
} | ||
` | ||
|
||
== Installation == | ||
|
||
1. Download the latest zip from here (https://github.com/codeboxrcodehub/cbxcareertoolkit/releases) | ||
2. [WordPress has clear documentation about how to install a plugin].(https://codex.wordpress.org/Managing_Plugins) | ||
3. After install activate the plugin "CBX PhpSpreadSheet Library" through the 'Plugins' menu in WordPress | ||
4. This plugin doesn't load any library by default, it doesn't create extra folder or menu. | ||
|
||
|
||
== Changelog == | ||
|
||
= 1.0.5 = | ||
* Dependency vendor packages updated to latest | ||
* Github.com based updater | ||
|
||
= 1.0.4 = | ||
* Updated the phpspreadsheet package to latest V1.29.0 | ||
|
||
= 1.0.3 = | ||
* Updated the phpspreadsheet package to latest V1.21.0 | ||
|
||
= 1.0.2 = | ||
* Updated the phpspreadsheet package to latest V1.21.0 | ||
|
||
= 1.0.1 = | ||
* Updated the phpspreadsheet package to latest | ||
|
||
= 1.0.0 = | ||
* First public release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.