+- `wookteam` Is a lightweight online team collaboration tool, provides a variety of documentation tools, online mind mapping, online flow chart, project management, task distribution, knowledge base management tools.
+- `wookteam` Support team online chat communication, subscribe task dynamic real-time push.
+- `WookTeam`Support internationalization, support: simplified Chinese, English, English translation from Google translation. If you have a better grammar you are welcome to write it. [Translation data](https://docs.google.com/spreadsheets/d/1m0de8-5vCwjKRwW_lsgzsi8wmOmQRl_bIMGN988Keak/edit?usp=sharing)
+
+## Function
+
+**1. Four quadrants: Highlight priorities, help employees arrange their time properly, and improve work efficiency**
+
+ * @param string|null $regexFilter regular expression to filter returned files/folders. See @link http://php.net/manual/en/reference.pcre.pattern.syntax.php
+ * @throws \RuntimeException
+ * @return array
+ * @static
+ */
+ public static function listFiles($regexFilter = null)
+ $whereRaw.= "(`username` LIKE '%" . $keys['username'] . "%' OR `nickname` LIKE '%" . $keys['username'] . "%')";
+ }
+ if (intval($keys['projectid']) > 0) {
+ $whereRaw.= $whereRaw ? ' AND ' : '';
+ $whereRaw.= "`username` IN (SELECT username FROM `" . env('DB_PREFIX') . "project_users` WHERE `type`='成员' AND `projectid`=" . intval($keys['projectid']) .")";
+ }
+ if ($keys['nousername']) {
+ $nousername = [];
+ foreach (explode(",", $keys['nousername']) AS $name) {
+ $name = trim($name);
+ if ($name && !in_array($name, $nousername)) {
+ $nousername[] = $name;
+ }
+ }
+ if ($nousername) {
+ $whereRaw.= $whereRaw ? ' AND ' : '';
+ $whereRaw.= "(`username` NOT IN ('" . implode("','", $nousername) . "'))";
+ }
+ }
+ if (intval($keys['noprojectid']) > 0) {
+ $whereRaw.= $whereRaw ? ' AND ' : '';
+ $whereRaw.= "`username` NOT IN (SELECT username FROM `" . env('DB_PREFIX') . "project_users` WHERE `type`='成员' AND `projectid`=" . intval($keys['noprojectid']) .")";
+ }
+ if (intval($keys['nobookid']) > 0) {
+ $whereRaw.= $whereRaw ? ' AND ' : '';
+ $whereRaw.= "`username` NOT IN (SELECT username FROM `" . env('DB_PREFIX') . "docs_users` WHERE `bookid`=" . intval($keys['nobookid']) .")";