Skip to content

A wp-kit component that provides soft deletes for Eloquent models

Notifications You must be signed in to change notification settings

wp-kit/softdeletes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

wp-kit/softdeletes

This is a wp-kit component that provides soft deletes for Eloquent models.

Installation

If you're using Themosis, install via Composer in the root of your Themosis installation, otherwise install in your Composer driven theme folder:

composer require "wp-kit/softdeletes"

Usage

Model

wp-kit/softdeletes comes with a trait, so all you need to do is include these in your model.

Based on drewjbartlett/wordpress-eloquent you can the Post model provided and use the SoftDeletes trait.

namespace Theme\Models;

use WPEloquent\Model\Post;
use WPKit\SoftDeletes\SoftDeletes;

class SomePostType extends Post {
	
	use SoftDeletes;
	
}

Get Involved

To learn more about how to use wp-kit check out the docs:

View the Docs

Any help is appreciated. The project is open-source and we encourage you to participate. You can contribute to the project in multiple ways by:

  • Reporting a bug issue
  • Suggesting features
  • Sending a pull request with code fix or feature
  • Following the project on GitHub
  • Sharing the project around your community

For details about contributing to the framework, please check the contribution guide.

Requirements

Wordpress 4+

PHP 5.6+

License

wp-kit/softdeletes is open-sourced software licensed under the MIT License.

About

A wp-kit component that provides soft deletes for Eloquent models

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages