grrinch/luya-module-posts
Composer 安装命令:
composer require grrinch/luya-module-posts
包简介
A more up-to-date for of the original `denyadzi/luya-module-posts` repository. The posts module provides standard blog/news functionality, including categories, articles, tags, wysiwyg, social networks integration.
README 文档
README
Posts Module
The posts module provides standard blog/news functionality, including categories, articles, tags, wysiwyg, social networks integration.
This module is a fork of the luya news module
Stability
The module is under development, so no stable version is currently available yet
Installation
For the installation of modules Composer is required.
composer require denyadzi/luya-module-posts: ~2.0-dev
For multilingual posts, the php intl extention is highly recommended to be installed in your system
Configuration
After installation via Composer include the module to your configuration file within the modules section.
'modules' => [ // ... 'posts' => [ 'class' => 'luya\posts\frontend\Module', 'useAppViewPath' => false, // When enabled the views will be looked up in the @app/views folder, otherwise the views shipped with the module will be used. ], 'postsadmin' => [ 'class' => 'luya\posts\admin\Module', 'wysiwygOptions' => [ /* various tinymce editor options */ 'height' => '800', 'menubar' => false, 'relative_urls' => false, 'remove_script_host' => false, 'convert_urls' => true, 'plugins' => 'link paste image imagetools code lists textcolor fullscreen wordcount table', 'toolbar' => 'undo redo | formatselect | bold underline italic forecolor backcolor image | alignleft aligncenter alignright alignjustify | numlist bullist outdent indent | link unlink | paste pastetext | removeformat | table | code wordcount | fullscreen', 'imagetools_cors_hosts' => [ 'huskyhamster.com' ], 'extended_valid_elements' => 'script[language|type|src]', // 'default_link_target' => '_blank', 'link_context_toolbar' => true, 'fullscreen_native' => true, 'rel_list' => [ ['title' => 'Internal', 'value' => 'internal'], ['title' => 'Internal CTA', 'value' => 'internal-cta'], ['title' => 'Full External', 'value' => 'noopener nofollow noreferrer'], ['title' => 'Nofollow', 'value' => 'nofollow'], ], 'paste_word_valid_elements' => 'p,b,strong,i,em,h1,h2,h3,h4,h5,h6,a,ul,li,ol,blockquote,cite,table,tr,td,th,tbody,thead', ], ], ]
Initialization
After successfully installation and configuration run the migrate, import and setup command to initialize the module in your project.
1.) Migrate your database.
./vendor/bin/luya migrate
2.) Import the module and migrations into your LUYA project.
./vendor/bin/luya import
After adding the persmissions to your group you will be able to edit and add new posts.
Example Views
As the module will try to render a view for the post overview, here is what this could look like this in a very basic way:
views/posts/default/index.php
<?php use yii\widgets\LinkPager; /* @var $this \luya\web\View */ /* @var $provider \yii\data\ActiveDataProvider */ ?> <h2>Latest Posts</h2> <?php foreach($provider->models as $item): ?> <?php /* @var $item \luya\posts\models\Article */ ?> <pre> <?php print_r($item->toArray()); ?> </pre> <p> <a href="<?= $item->detailUrl; ?>">Post Detail Link</a> </p> <?php endforeach; ?> <?= LinkPager::widget(['pagination' => $provider->pagination]); ?>
views/posts/default/detail.php
<?php /* @var $this \luya\web\View */ /* @var $model \luya\posts\models\Article */ ?> <h1><?= $model->title; ?></h1> <pre> <?php print_r($model->toArray()); ?> </pre>
The above examples will just dump all the data from the model active records.
grrinch/luya-module-posts 适用场景与选型建议
grrinch/luya-module-posts 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 101 次下载、GitHub Stars 达 0, 最近一次更新时间为 2022 年 10 月 24 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「blog」 「module」 「news」 「yii」 「yii2」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 grrinch/luya-module-posts 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 grrinch/luya-module-posts 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 grrinch/luya-module-posts 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Laravel package for opinionated blog implementation
Import an RSS-feed into blog
bootstrap select field module implementing http://silviomoreto.github.io/bootstrap-select/
Faker provider for NumberNine CMS
Yii2 module to manage website content. Kind of a CMS...
A blog module for AsgardCMS.
统计信息
- 总下载量: 101
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 17
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-10-24
