Download the PHP package wpify/model without Composer

On this page you can find all versions of the php package wpify/model. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package model

Models for WordPress

This library provides a better access to data in WordPress. It is a wrapper around the WordPress API, which provides a more object-oriented approach to the data. It also provides a way to define custom models for your data, for example to define a model for a custom post type, custom taxonomy or custom database table.

Benefits

Core concepts

The library uses a few types of objects:

Requirements

Installation

Install the library using composer:

Basic usage

First think you need to do is to initialize the Manager to have access to built-in models and repositories:

With the manager you can use a built-in models and repositories. For example, to get all published posts you can use the following code:

And then you can access the data using the model:

You can also retrieve a single post by its ID or other keys:

Updating the model

To update the data, you simply update model's properties and then save the data by calling the save() method on the repository:

Creating new entries

To create a new entry, you need to create a new model via repository and then save it:

Deleting the entry

To delete the entry, you need to call the delete() method on the repository:

Custom models

You can define your own models to access the data in custom post types, custom taxonomies or custom database tables. All your custom models must extend the Wpify\Model\Model class or other models. Every custom model must have a repository, which must extend the Wpify\Model\Repository class or other repositories.

Defining a custom model

In this example, we will define a model for a custom post type with some meta fields:

All properties have a definition in the form of a PHP attribute. You can use the following attributes:

There are also attributes that can modify a behaviour of the propery:

Some of the attributes have additional parameters, that can be passed by named constructor arguments:

Most of the attributes have a default values, so you can omit some of the parameters.

Defining a custom repository

To actually use the model, you need to define a repository for it. In this example, we will define a repository for the Book model:

After repository creation, you need to register it in the manager:

You can also register the repository in the constructor of the manager:

If you use a PHP-DI, you can register the repository in the container:

Built-in models

The library provides a few built-in models and repositories. You can use them also to define your custom models by extending them.

Custom table models

You can create and use custom table models. To do this, you need to define a repository for the model and a model itself. The table is created automatically, so you don't need to handle it manually, but you can disable this behaviour.

Example:

You also need to define the model with column attributes:

The Column attribute accepts the following parameters:

The model must contain exactly one primary key column.

Column can be one of the following types:

Foreign key array contains these items:

The repository will automatically create the table when the repository is used. If you want to disable automatic migrations, you can pass false to the auto_migrate parameter in the constructor. You can then manually migrate the table by calling the migrate() method in appropriate place, e.g. plugin activation hook, admin_init hook, etc.

The table name is automatically prefixed with the WordPress table prefix. If you want to disable this, you can pass false to the use_prefix parameter in the constructor.

If you want to drop the database table, you can call the drop_table() method. This is useful when uninstalling the plugin.

Querying the custom table

You can query custom tables with find function:

Even this works, it is not recommended to use this method, because it is vulnerable to SQL injection. Instead, you should use array as arguments, that sanitizes the values, and you can use complex queries:

As you can see, you can use even nested queries or specify the operator in the key. You can also define, whether to use OR, or AND operator.

TODO:


All versions of model with dependencies

PHP Build Version
Package Version
Requires php Version >=8.0.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package wpify/model contains the following files

Loading the files please wait ....