Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
public function tasks_page() { global $wpdb; // معالجة الإجراءات if (isset($_POST['action'])) { switch ($_POST['action']) { case 'add_task': $this->handle_add_task(); break; case 'bulk_action': $this->handle_bulk_action(); break; } } include MONJAZ_PLUGIN_PATH . 'templates/tasks-page.php'; }