承接 oplatform-club/platform-serialised-fields 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

oplatform-club/platform-serialised-fields

Composer 安装命令:

composer require oplatform-club/platform-serialised-fields

包简介

Oro Platform Serialized Fields

README 文档

README

This document contains a little introduction into "Oro Entity Serialized Fields" package, information on how to download and install.

Table of content

Fundamentals

ORO Platform provides ability to have custom entities or extend entities with new custom fields.

The package allows to avoid schema update when you create custom field. Although this field come with some restrictions.

Such fields data stores in serialized_data column as serialized array. Field serialized_data is hidden from UI in entity config page.

Not supported features:

  • grid filtering and sorting
  • segments and reports
  • charts
  • search
  • relations, enums and option set field types
  • data audit
  • usage of such fields in Doctrine query builder

After installation (described below) a new field called Storage Type appears within New field creation page where you will be offered to choose between two storage types:

  • Table Column option will allow to create custom field as usual;
  • Serialized field option means that you can avoid schema update and start to use this field imediately, but should take into account, that field types are limited in this case to:
    • string
    • integer
    • smallint
    • bigint
    • boolean
    • decimal
    • date
    • datetime
    • text
    • float
    • money
    • percent

To create a serialized field via migration the SerializedFieldsExtension can be used. Here is an example:

<?php

namespace Acme\Bundle\AppBundle\Migrations\Schema\v1_1;

use Doctrine\DBAL\Schema\Schema;

use Oro\Bundle\EntityExtendBundle\EntityConfig\ExtendScope;
use Oro\Bundle\EntitySerializedFieldsBundle\Migration\Extension\SerializedFieldsExtension;
use Oro\Bundle\EntitySerializedFieldsBundle\Migration\Extension\SerializedFieldsExtensionAwareInterface;
use Oro\Bundle\MigrationBundle\Migration\Migration;
use Oro\Bundle\MigrationBundle\Migration\QueryBag;

class AddSerializedFieldMigration implements
    Migration,
    SerializedFieldsExtensionAwareInterface
{
    /** @var SerializedFieldsExtension */
    protected $serializedFieldsExtension;

    /**
     * {@inheritdoc}
     */
    public function setSerializedFieldsExtension(SerializedFieldsExtension $serializedFieldsExtension)
    {
        $this->serializedFieldsExtension = $serializedFieldsExtension;
    }

    /**
     * {@inheritdoc}
     */
    public function up(Schema $schema, QueryBag $queries)
    {
        $this->serializedFieldsExtension->addSerializedField(
            $schema->getTable('my_table'),
            'my_serialized_field',
            'string',
            [
                'extend'    => [
                    'owner' => ExtendScope::OWNER_CUSTOM,
                ]
            ]
        );
    }
}

Requirements

OroEntitySerializedFieldsBundle requires OROPlatform(BAP) and PHP 7.0 or above.

Installation

Package is available through Oro Package Manager. For development purposes it might be cloned from github repository directly.

git clone git@github.com:orocrm/OroEntitySerializedFieldsBundle.git
git submodule init
git submodule update

Update your composer.json with

   "autoload": {
        "psr-0": {
...
            "Oro\\Bundle": ["src/Oro/src", "src/OroPackages/src"],
...            
        }
    },
php composer.phar update
php app/console oro:platform:update --force

Run unit tests

To run unit tests for this package:

phpunit -c PACKAGE_ROOT/phpunit.xml.dist

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: OSL-3.0
  • 更新时间: 2017-12-31

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固