Changeset 3345085
- Timestamp:
- 08/15/2025 09:59:29 AM (8 months ago)
- Location:
- wp-todo
- Files:
-
- 5 edited
-
assets/screenshot-1.png (modified) (previous)
-
assets/screenshot-2.png (modified) (previous)
-
assets/screenshot-3.png (modified) (previous)
-
trunk/readme.txt (modified) (4 diffs)
-
trunk/wp-todo.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-todo/trunk/readme.txt
r3034409 r3345085 2 2 Contributors: delower186 3 3 Tags: todo, task, project management, to do list, todo list, project management, todo, todo list, task, basecamp, milestone, message, file, comment, client, team, tracking, planning, lists, reporting, project management plugin for wordpress, project manager, project manager plugin for wordpress, wordpress project management 4 Requires at least: 5.4 or higher5 Tested up to: 6. 4.36 Stable tag: 1.3.07 Requires PHP: 6.84 Requires at least: 6.4 or higher 5 Tested up to: 6.8.2 6 Stable tag: 2.0.0 7 Requires PHP: 7.2 or higher 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 10 11 A full featured plugin for creating and managing a To Do list.11 A powerful, full-featured WordPress plugin to effortlessly create, manage, and track your tasks with custom statuses, priorities, and deadlines right from your dashboard. 12 12 13 13 == Description == 14 14 15 Best To Do List Management Tool for Wordpress 16 17 WP To Do is a great To Do List Management Plugin. You can Manage all of your To Do List simply with this complete & right tool with all the options you need! It gives you Premium To Do List Management Features for free! 18 19 You will be able to Add Task to the List and assign those to registered users. The Tasks can be edited, deadlined, managed by statuses and importance. The Assignees can be notified automatically or by need, sending a comment or a reminder. 20 21 You can show To Do List Management in the Frontend as well with placing a simple shortcode [wp-todo], no hassle to allow other users' to enter your Private Administration Area! 15 This full-featured WordPress plugin provides a comprehensive solution for creating, managing, and tracking to-do lists directly from your dashboard. Designed for both personal and professional use, it allows users to organize tasks efficiently, set priorities, and monitor progress at a glance. Each task can be assigned a status such as Not Started, In Progress, On Hold, Review, Completed, or Cancelled, giving you full visibility into your workflow. You can also set deadlines to ensure timely completion and prioritize tasks as High, Medium, or Low, helping you focus on what matters most. The plugin’s intuitive interface makes adding, editing, and deleting tasks quick and easy, while color-coded statuses and priorities provide a clear visual overview of your work. Perfect for individuals, teams, or small businesses, it enhances productivity by keeping tasks organized, improving accountability, and simplifying task tracking. Whether you’re managing daily chores, project tasks, or complex workflows, this plugin is flexible and user-friendly, making it easy to stay on top of your responsibilities. With its seamless integration into the WordPress dashboard, you can manage your to-do lists without leaving your site, ensuring efficiency and organization in one convenient tool. 22 16 23 17 == Features == 18 * **Brand new design & re-developed from scratch - More Features comming soon!** 24 19 * Add as many Task to the list as you want with title, description, deadline, status, Priority etc 25 20 * Add tasks, assign users, assign due date 26 21 * Countdown Timer shows how many days, hours, minutes & seconds left 27 * Add comments on individual to-do lists 28 * Mark Task as Solved, Closed, Open, New etc 22 * Mark Task as Not Started, In Progress, Pending, In Review & more 29 23 * Beautiful "to do" list management dashboard 30 * Ajax data table31 * Instant Multiple filter, search & pagination32 * Filter By any column & entry numbers (default is 10)33 * Instant search any word within the table34 * Customizable E-mail Template35 * Shortcode to use WP To Do from frontend.36 37 == Shortcodes ==38 * [wp-todo]39 24 40 25 == Detailed Walkthrough == … … 53 38 == Frequently Asked Questions == 54 39 55 = Q. Does it shows up in frontend? =56 A. Of course! Just create a new page and insert [wp-todo] shortcode to show it in frontend57 58 = Q. Who can create Task? =59 A. Only Editors and Admin's can create Tasks and Author & Contributor can edit & comment.60 61 40 = Q. Found a bug? = 62 41 A. Found any bugs? Please create an [issue](https://github.com/delower186/wp-todo/issues) on github. … … 64 43 65 44 == Changelog == 45 46 = 2.0.0 = 47 * Re-developed from scratch 48 * Brand new UI 49 50 51 = 1.3.0= 66 52 67 53 = 1.2.9 = … … 149 135 == Screenshots == 150 136 1. WP To Do List Dashboard. You can see all your Tasks from here and Create New Task 151 2. Task Details Page and Comment Form 152 3. Task Edit Page with OverDue Status 153 4. Task Edit Page with Countdown Timer 154 5. Add New Task Pop up window 1st Part 155 6. Add New Task Pop up window 2nd Part 156 7. Settings Page With Customizable E-mail Form 157 8. Frontend Dashboard Page 137 2. Task Details Page 138 3. Add New Task Editor -
wp-todo/trunk/wp-todo.php
r3034409 r3345085 6 6 Plugin Name: WP To Do 7 7 Plugin URI: https://sandalia.com.bd/apps 8 Description: A full featured plugin for creating and managing a "to do" list.9 Version: 1.3.08 Description: A powerful, full-featured WordPress plugin to effortlessly create, manage, and track your tasks with custom statuses, priorities, and deadlines right from your dashboard. 9 Version:2.0.0 10 10 Author: Delower 11 11 Author URI: https://sandalia.com.bd/apps … … 33 33 defined('ABSPATH') or die('Hey, What are you doing here? You Silly Man!'); 34 34 35 if(file_exists(dirname(__FILE__).'/vendor/autoload.php')){ 36 require_once dirname(__FILE__).'/vendor/autoload.php'; 37 } 35 define('PLUGIN_DIR_PATH', plugin_dir_path( __FILE__)); 36 define('PLUGIN_DIR_URL', plugin_dir_url( __FILE__)); 38 37 39 //activate plugin 40 function activate_wptodo(){ 41 \Inc\Base\Activate::activate(); 42 } 43 register_activation_hook( __FILE__, 'activate_wptodo' ); 44 //deactivate plugin 45 function deactivate_wptodo(){ 46 \Inc\Base\Deactivate::deactivate(); 47 } 48 register_deactivation_hook( __FILE__, 'deactivate_wptodo' ); 49 //instantiate classes 50 if( class_exists( 'Inc\\Init' ) ){ 51 \Inc\Init::register_services(); 52 } 38 39 include PLUGIN_DIR_PATH . "todo/wptodo_custom_post_type.php"; 40 include PLUGIN_DIR_PATH . "meta_boxes/wptodo_meta_boxe.php"; 41 include PLUGIN_DIR_PATH . "list_table/custom_columns.php"; 42 include PLUGIN_DIR_PATH . "notification/notify.php"; 43 include PLUGIN_DIR_PATH . "inc/enqueue.php"; 44 include PLUGIN_DIR_PATH . "todo/modal_view.php"; 45 include PLUGIN_DIR_PATH . "todo/count_down_timer.php";
Note: See TracChangeset
for help on using the changeset viewer.