Download the PHP package getrix/objectmodel without Composer

On this page you can find all versions of the php package getrix/objectmodel. 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 objectmodel

ObjectModel

PHP helpers to access objects and its collections in database

Warning! This project is currently in deep private beta. Please do not use it if you care about anything good.

Installation

  1. Add this package as a Composer dependency:
composer require getrix/objectmodel
  1. Define a database callback. This is a callback function stored in a static property $databaseCallback of ObjectModel class that should return an PDO object with link to database.

 

Usage

Quick example:

use Getrix\ObjectModel;

Getrix\ObjectModel::setDB(
    new PDO("mysql:dbname=bbass;host=localhost", "user", "password"
);

final class Post extends Getrix\ObjectModel {
  protected static $table = 'Posts';
  protected static $primaryKey = 'id';

  public function __construct(array $row = null) {
    parent::__construct(self::$table, self::$primaryKey,
      [
        "id" => [
          "type" => "integer"
        ],
        "title" => [
          "type" => "string"
        ],
        "text" => [
          "type" => "string"
        ]
      ], $row );
  }
}

$post = Post::getById(1);

var_dump($post);

Field rules

Any object handled with ObjectModel should have a schema that describes validation and transformation rules for each of data field in database. Schema should be defined in object constructor, for ex.:

[
    "id" => [
      "type" => "integer"
    ],
    "title" => [
      "type" => "string"
    ],
    "text" => [
      "type" => "string"
    ]
]

 

Schema field properties

Property Description Values Default
type Type of field See “Schema field types” below string
required Is this field is required or not true or false false
default Default value for the field that will be set in case of field value is null any -
fn Field validator/transformation callback function. Will be used instead of default type validation rules function(ObjectField \$schema,mixed $value,boolean $reverse) -
populate Used to define population class name See “Populating field values” below -

 

Schema field types

Type Description Direct action (from DB) Reverse action (to DB)
string Plain string Applies stripslashes default PHP function after the htmlspecialchars_decode Applies addslashes after htmlspecialchars
integer Number
associative Associative array Translates stored value to corresponding value in values field property by its key Stores key value of corresponding entry in values associative array of the field

 

Version history

1.2.0

Released 17th November, 2018

1.1.1

Released 7th October, 2018

1.1.0

Released 26th August, 2018

 

1.0.2

Released 10th August, 2018

 

1.0.1

Released 9th August, 2018

1.0.0

Released 9th August, 2018


All versions of objectmodel with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1.0
envms/fluentpdo Version ^1.1
ext-json Version *
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 getrix/objectmodel contains the following files

Loading the files please wait ....