status
: Only one status label can be assigned at once;- status:
accepted
: The issue was valid and now is selected for development; - status:
duplicate
: The issue was already described by another issue. Must be closed referencing the original issue. Followed by close action. - status:
invalid
: The issue will be closed and not be selected for development. Followed by close action; - status:
solved
: The issue was solved by a commit and the PR was successfully merged intomaster
/development
branches. Followed by close action; - status:
wontfix
: The issue couldn't be solved for any reason which must be described in the comments section. Followed by close action; - status:
worksforme
: The issue couldn't be reproduced and everything seems normal. Followed by close action.
- status:
priority
: Only one priority label can be assigned at once;
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
<?php | |
/** | |
* Converts a given WordPress date format to jQuery UI Datepicker format. | |
* | |
* @author Denison Martins <[email protected]> | |
* | |
* @see https://codex.wordpress.org/Formatting_Date_and_Time | |
* @see http://api.jqueryui.com/datepicker | |
* | |
* @throws InvalidArgumentException |
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
/** | |
* Method that tests a string to check if it's value can be assumed as a (bool), regardless of being true/false. | |
* Note: If the string is empty, this function will return false since there's "no value" to be tested. | |
* @examples: | |
* "1".isBool() // returns true | |
* "yEs".isBool() // returns true | |
* "off".isBool() // returns true | |
* "".isBool() // returns false | |
* " ".isBool() // returns false | |
* |