承接 enm/external-layout 相关项目开发

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

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

enm/external-layout

Composer 安装命令:

composer require enm/external-layout

包简介

Load, modify and store html layouts from remote locally

README 文档

README

This library loads html layouts from remote, modify them for local usage and stores the result into a new file.

Installation

composer require enm/external-layout

If you want to use the default (guzzle) loader:

composer require guzzlehttp/guzzle

Usage

Their are different ways to use this library, depending on your needs.

Simple

The simplest way of usage is to use the layout creator factory with the default guzzle loader (requires guzzlehttp/guzzle). For simplest usage you should build your layout definitions from a config array.

$factory = \Enm\ExternalLayout\LayoutCreatorFactory::withGuzzleLoader();
$factory->enableRelativeUrlReplacement(); // adds the "UrlManipulator"
$factory->enableTwigBlocks(); // adds the "TwigManipulator" and the "WorkingTagFinisher"

$layoutCreator = $factory->create(); // create a configured instance of the LayoutCreator

$layoutCreator->createFromConfig( // load the original layout, manipulate the content and stores the modified content to the configured file
  [
      'source' => 'http://example.com', // your source url, with username and password (Basic Auth) if needed
      'destination' => __DIR__ . '/test.html.twig', // your destination file
      'blocks' => [
          'prepend' => [
              'headline' => 'body' // add block "body" as first child of html element "headline"
          ],
          'append' => [
              'stylesheets' => 'head', // add block "stylesheets" as last child of html element "head"
              'javascripts' => 'body' // add block "javascripts" as last child of html element "body"
          ],
          'replace' => [
              'title' => '%title%', // replace string "%title%" with block "title"
              'content' => '$$content$$' // replace string "$$content$$" with block "content"
          ]
      ]
  ]
);

Customized

If you want to customize loading, manipulation or finishing for the layout, you can also use the factory and configure your custom requirements.

$factory = new \Enm\ExternalLayout\LayoutCreatorFactory(
    new YourLoader() // here you can set an instance of a different loader, if you don' want to use the guzzle loader
);
$factory->addManipulator(
    new YourManipulator() // it is possible to set any number of custom manipulators
);
$factory->addFinisher(
    new YourFinisher() // it is possible to set any number of custom finishers
);

$layoutCreator = $factory->create();

// ... usage the same as above

Fully Customized

If you want a fully customized implementation (for example for usage with a dependency injection service container), you could create all instances without factory by yourself.

$layoutCreator = new \Enm\ExternalLayout\LayoutCreator(
    new YourLoader(), // use your own loader or an instance of "Enm\ExternalLayout\Loader\GuzzleLoader"
    new YourManipulator(), // use your own manipulator or for example an instance of "Enm\ExternalLayout\Loader\ManipulatorChain"
    new YourFinisher() // use your own finisher or for example an instance of "Enm\ExternalLayout\Loader\FinisherChain"
);

// ... usage the same as above

Customization

The library works as follows:

  1. Load contents from source url into a \DomDocument ("loaders")
  2. Manipulate the \DomDocument for example with content replacements or block for your templating ("manipulators")
  3. Finish the layout with simple plain text processing ("finishers")
  4. Store the manipulated and finished html content into the configured file

Loaders

Loaders are responsible for loading the html content of the given uri into a \DomDocument.

You can use the default loader (Enm\ExternalLayout\Loader\GuzzleLoader) which requires an instance of (GuzzleHttp\ClientInterface; composer: guzzlehttp/guzzle) or you can implement the Enm\ExternalLayout\Loader\LoaderInterface by yourself.

Manipulators

Manipulators are responsible for manipulation of the loaded \DomDocument. Manipulators could change contents, remove or add new dom elements or insert blocks for different templating languages (default Twig).

If you want to use more than one manipulator you can add all your manipulators to an instance of Enm\ExternalLayout\Manipulator\ManipulatorChain. A manipulator must implement Enm\ExternalLayout\Manipulator\ManipulatorInterface.

Available manipulators are:

  • UrlManipulator: Replace relative urls with absolute urls (needed because assets normally are farther loaded from original source)
  • TwigManipulator: Replace strings with twig blocks; prepend or append twig blocks to html elements
  • BaseUrlManipulator: Removes the base tag to avoid invalid local relative paths

Finishers

Finishers are responsible for cleanup and string replacements which are not possible in a \DomDocument.

If you want to use more than one finisher you can add all your finishers to an instance of Enm\ExternalLayout\Finisher\FinisherChain. A finisher must implement Enm\ExternalLayout\Finisher\FinisherInterface.

Available finishers are:

  • WorkingTagFinisher: Remove "working tags", which are used to generate valid xml content for the \DomDocument where actually no tag in the finished content is needed

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-05-24

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固