定制 zortje/mvc 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

zortje/mvc

最新稳定版本:0.5.1

Composer 安装命令:

composer require zortje/mvc

包简介

MVC

README 文档

README

MVC

Packagist Travis Codecov Scrutinizer Dependency Status Packagist

SensioLabsInsight

Installing via Composer

The recommended way to install MVC is through Composer.

{
    "require": {
        "zortje/mvc": "~0.0"
    }
}

Setup

Database

Init Phinx with phinx.yml and run migration to create user tables.

Webroot

The NGINX server block root should point to the webroot folder where the index.php file should be, along with any files that should be directly accessible from the web browser.

Documentation

Controller

Model

The model is devided into two classes; Table and Entity.

Table

A table must extend the Table class and contain a property for tableName which is the database table name and entityClass which is the entity class name.

class UserTable extends Zortje\MVC\Model\Table\Table
{
    protected $tableName = 'users';
    protected $entityClass = User::class;
}

Entity

A entity must extend the Entity class and contain a property for columns.

The columns are defined with the table column name as the key and data type for value, the type can be either string, int, float, double, bool, date or datetime.

A optional "convenience" constructor can be added to the class to class to ease the creation of the entity object.

class User extends Zortje\MVC\Model\Table\Entity
{

    protected static $columns = [
        'email'         => EntityProperty::STRING,
        'password_hash' => EntityProperty::STRING,
    ];

    public function __construct(string $email, string $passwordHash)
    {
        parent::__construct(null, new \DateTime(), new \DateTime());

        $this->set('email', $email);
        $this->set('password_hash', $passwordHash);
    }
}

统计信息

  • 总下载量: 339
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-04-29