dynamedia/posts-plugin
Composer 安装命令:
composer require dynamedia/posts-plugin
包简介
Posts publishing plugin
README 文档
README
This plugin provides functionality to write posts (blog posts, news articles etc). To facilitate this, you will need several CMS pages containing relevant plugin components.
To properly implement this plugin into your website, you will likely want to be able to display the content of your posts and have a way to list posts according to various criteria, perhaps by date posted or by the associated category, tag or author.
A demonstration theme is available at https://github.com/Dynamedia/oc-posts-demo-theme which is a useful resource for developers looking to get a quick start. Additionally, a live and interactive demo site can be accessed at https://playground.posts-plugin.dynamedia.uk
On Installation
Backend Users will have a 'profile' created where additional information can be entered. Each user will have a configurable username generated which is used in the frontend to avoid exposing the login name.
Configuration
The majority of the plugin configuration can be found in the backend settings area in the Dynamedia Posts Settings section. Some settings are absolute, whereas others allow you to define a default which will either be inherited or overridden by a post or group (category, tag) of posts.
Publisher Tab
These settings are to assist with Search Engine Optimization and are required for the plugin to generate the correct outputs in conjunction with the theme.
-
Publisher Name - Should contain the name of the organization or individual who is publishing the content, for example Dynamedia Limited.
-
Publisher Type - Dropdown to select either Individual or Organisation.
-
Publisher URL - The URL of the publisher. This may or may not be the same as the current website URL.
-
Publisher Logo - The logo of the publisher.
Posts Tab
This section is for configuring the CMS pages used to display post content.
-
Post Display Page (With Categories) - Select the CMS page which contains the displayPost component. It is recommended to select a page which also has the displayCategory component attached although this isn't required if you prefer a /categories & /posts URL structure.
-
Post Display Page (No Category) - Select the CMS page with the displayPost component when not following the above advice. You can choose a separate CMS page for displaying uncategorized posts but it is advised against.
Further information is available in the component section of this documentation.
Categories Tab
This section is for configuring the CMS pages used to display category content and the associated posts list.
-
Category Display Page - Select the CMS page which contains the displayCategory component. As above, it is recommended to utilise both the displayPost and displayCategory components in the same CMS page.
-
Default Posts Sort Order - Choose a default sorting order for posts in the category. This value can be overridden in the settings section of each individual category.
-
List Posts from Sub-Categories - Choose whether the posts list for this category should contain posts from sub categories. This value can be overridden in the settings section of each individual category.
-
Posts Per Page - Used to select how many posts should be shown per page. This value can be overridden in the settings section of each individual category. The values for this dropdown are derived from config/config.php.
Tags Tab
This section is for configuring the CMS page used to display tag content and the associated posts list.
-
Default Posts Sort Order - Defines a default sorting order for posts in the category. This value can be overridden in the settings section of each individual category.
-
Posts Per Page - Used to select how many posts should be shown per page. This value can be overridden in the settings section of each individual category. The values for this dropdown are derived from config/config.php.
Users Tab
This section is for configuring the CMS page used to display user profiles and the associated posts list.
-
Default Posts Sort Order - Defines a default sorting order for posts by the user. This value can be overridden in the settings section of each individual category.
-
Posts Per Page - Used to select how many posts should be shown per page. The values for this dropdown are derived from config/config.php.
CMS Layouts Tab
The plugin allows for on-the-fly theme layout changing so you are not restricted to a single layout file per CMS page (post, category, tag). This gives great flexibility when designing themes. An example use case for this is when designing a large website which covers several different topics. You may want to have a different appearance for different sections. Naturally, the options available in this section will depend entirely on how many layouts have been made available in the theme.
-
Default Post Layout - The default for posts where the category or post has not specified a separate layout. Posts can specify a layout file or can inherit from their primary category.
-
Default Category Layout - The default for categories where the category has not specified a separate layout.
-
Default Tag Layout - The default for tags where the tag has not specified a separate layout.
Components
Several components are provided with the plugin.
displayPost
This component is for displaying the contents of a post. The component has no configurable options and should be present on a CMS page which contains either of the two available URL parameters.
Both of the available parameters ultimately fetch the post from the post slug but several are provided to help with defining the ideal URL structure.
:postsPostSlug represents only the slug, eg /my-post
:postsFullPath* represents the category and post, eg /a-category/a-subcategory/my-post
although this can also match a category slug or a post without categories when used
alongside the displayCategory component.
The following snippet demonstrates how you might implement this component, standalone on a CMS page with the full category path as part of the URL.
title = "Posts Page"
url = "/posts/:postsCategoryPath*/:postsPostSlug"
[displayPost]
==
{% component 'displayPost' %}
If you want to implement without showing the category you might do as follows
title = "Posts Page Without Category"
url = "/posts/:postsPostSlug"
[displayPost]
==
{% component 'displayPost' %}
displayPost will inject the following variables:
-
post - The Post object
-
paginator - a LengthAwarePaginator to use with multi-page posts
displayCategory
This component is for displaying the contents of a category and its associated list of posts. The component has no configurable options and should be present on a CMS page which contains either of the two available URL parameters.
:postsCategorySlug represents the category slug.
:postsCategoryPath* represents the category part of the path, eg. /a-category or
/a-category/a-sub-category
:postsFullPath* represents the category and post, eg /a-category/a-subcategory/my-post
although this can also match a category slug or a post without categories when used
alongside the displayCategory component.
The following snippet demonstrates how you might implement this component, standalone on a CMS page with the full category path as part of the URL.
title = "Category Display Page"
url = "/posts/category/:postsCategoryPath*"
[displayCategory]
includeSubcategories = 1
postsPerPage = 10
==
{% component 'displayCategory' %}
Or with just the category slug but without the full path
title = "Category Display Page"
url = "/posts/category/:postsCategorySlug"
[displayCategory]
includeSubcategories = 1
postsPerPage = 10
==
{% component 'displayCategory' %}
displayCategory will inject the following variables:
-
category - The Category object.
-
posts - a LengthAwarePaginator containing post items.
Combining displayPost and displayCategory
It is recommended to use the same URL for both the post display and category display pages. The plugin handles the logic to resolve the correct page in the event of a URL clash. This allows for semantic URL's which can even begin at the project root.
You can achieve this my utilising the :postsFullPath* parameter in the url
In this case, you could use the following snippets for both pages.
Post Display Page.
title = "Post Display Page"
url = "/:postsFullPath*"
layout = "default"
meta_title = "Post Display Page"
is_hidden = 0
[displayPost]
==
{% component 'displayPost' %}
Category Display Page
title = "Category Display Page"
url = "/:postsFullPath*"
layout = "default"
meta_title = "Category Display Page"
is_hidden = 0
[displayCategory]
includeSubcategories = 1
postsPerPage = 11
noPostsMessage = "No posts found"
sortOrder = "published_at desc"
==
{% component 'displayCategory' %}
This would match, for example:
https://example.org/my-uncategorized-post
https://example.org/a-category
https://example.org/a-category/my-categorized-post
It would, however, not match:
https://example.org/my-static-page
Of course, you do not need to implement from the URL root,
you could just as easily use url = '/posts/:postsFullPath*\'
Note: URL's
The above components are both used in URL generation. When you have created
your preferred structure and selected the relevant pages in the plugin
settings, post and category objects will have the url attribute
available. You can access these at {{ post.url }} and {{ category.url }}
If your category structure changes, users will always be redirected to the correct URL.
As an example, if you have a post with the slug 'my-interesting-post',
and it has no category, its URL might be
https://example.org/posts/my-interesting-post
You may later add a category called 'my-stuff' and choose to add the post
so it's URL now becomes
https://example.org/posts/my-stuff/my-interesting-post
In this case, https://example.org/posts/my-interesting-post will redirect
to https://example.org/posts/my-stuff/my-interesting-post.
displayTag
This component is for displaying the contents of a tag and its associated list of posts. The component has no configurable options.
The tag will be identified using the :postsTagSlug URL parameter.
Example implementation
title = "Tags"
url = "/tags/:postsTagSlug"
[displayTag]
postsPerPage = 10
==
{% component 'displayTag' %}
displayCategory will inject the following variables:
-
tag - The Tag object.
-
posts - a LengthAwarePaginator containing post items.
displayUser
This component is responsible for displayng a user profile and the posts of the user.
The user will be identified using the :postsUsername URL parameter.
It is important to note that the username is not the backend login name. A username will be generated by the Profile model for each user, but this can be changed in the user admin settings.
Example implementation
title = "User Posts"
url = "/user/:postsUsername"
[displayUser]
==
{% component 'displayUser' %}
displayCategory will inject the following variables:
-
user - The backend User object.
-
posts - a LengthAwarePaginator containing post items.
searchPosts
This component is responsible for displayng search results for Posts.
The search query should be passed with the q URL parameter, for example
https://example.org/search?q=keyword
This component requires some configuration
-
postsLimit - The total number of posts that can be fetched.
-
postsPerPage - When this is greater than postsLimit or postsLimit is not set, the results will be paginated.
-
sortOrder - Dropdown to choose the order in which results should be returned.
Example implementation
title = "Search"
url = "/search"
[searchPosts]
postsPerPage = 10
==
{% component 'searchPosts' %}
searchPosts will inject the following variables:
-
searchQuery - The search string.
-
posts - a LengthAwarePaginator containing post items.
listPosts
This component is responsible for displayng a customised list of posts.
This component requires some configuration
-
categoryFilter - Posts from the selected category.
-
includeSubcategories - Include posts from the selected category's subcategories.
-
tagFilter - Posts tagged with the selected tag.
-
postIds - Return only posts with the given IDs, in the order specified.
-
notPostIds - Exclude posts with the given IDs.
-
notCategoryIds - Exclude posts from categories with the given IDs.
-
notTagIds - Exclude posts with tags matching with the given IDs.
-
postsLimit - The total number of posts that can be fetched.
-
postsPerPage - When this is greater than postsLimit or postsLimit is not set, the results will be paginated.
-
sortOrder - Choose the order in which results should be returned.
Example implementation, perhaps suitable for a website homepage
title = "Home"
url = "/"
[listPosts featuredPosts]
postIds = "1,2"
postsLimit = 2
postsPerPage = 2
sortOrder = "published_at desc"
[listPosts latestPosts]
notPostIds = "1,2"
notCategoryIds = 4
notTagIds = 1
postsLimit = 5
postsPerPage = 5
sortOrder = "published_at desc"
==
<div class="content">
<div class="row">
<div class="col-12">
<h2 class="mt-4 mb-4">Featured Posts</h2>
{% component 'featuredPosts' %}
<h2 class="mt-4 mb-4">Latest posts</h2>
{% component 'latestPosts' %}
</div>
</div>
</div>
listPosts will inject the following variables:
- posts - a LengthAwarePaginator containing post items.
Anatomy of Objects
The following section describes the attributes available in the objects generated by the Posts plugin
Post
Model Dynamedia\Posts\Post
Table dynamedia_posts_posts
Post Attributes
| Attribute | Type |
|---|---|
| title | String |
| slug | String |
| excerpt | Text (html) |
| body | Array |
| images | Array |
| url | string * |
| contents_list | Array * |
| pages | Array * |
| show_contents | Boolean |
| is_published | Boolean |
| published_at | DateTime |
| author_id | Integer (Backend\Models\User ID) |
| editor_id | Integer (Backend\Models\User ID) |
| primary_category_id | Integer (Category ID) |
* Appended attribute
To aid in development, some example dd dumps are provided below for the array attributes.
body attribute
^ array:4 [▼
0 => array:2 [▼
"block" => array:5 [▼
"sId" => "first"
"image" => array:4 [▼
"alt" => ""
"class" => ""
"default" => ""
"image_style" => "inline-left"
]
"content" => "<p>Construct your posts using as many or as few blocks as you like!</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incidid ▶"
"heading" => "A content block"
"in_contents" => "1"
]
"_group" => "section"
]
1 => array:2 [▶]
2 => array:1 [▼
"_group" => "pagebreak"
]
3 => array:2 [▼
"block" => array:5 [▼
"sId" => "third"
"image" => array:4 [▶]
"content" => "<p>Posts can, if you want, be written over multiple pages. It's all handled internally so just add a pagebreak block. Easy!</p>"
"heading" => "New page content"
"in_contents" => "1"
]
"_group" => "section"
]
]
pages attribute
This is derived from the body and separates body sections by pagebreaks
^ array:2 [▼
0 => array:2 [▼
0 => array:3 [▼
"block" => array:5 [▼
"sId" => "first"
"image" => array:4 [▶]
"content" => "<p>Construct your posts using as many or as few blocks as you like!</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incidid ▶"
"heading" => "A content block"
"in_contents" => "1"
]
"_group" => "section"
"page" => 1
]
1 => array:3 [▶]
]
1 => array:1 [▼
0 => array:3 [▼
"block" => array:5 [▼
"sId" => "third"
"image" => array:4 [▶]
"content" => "<p>Posts can, if you want, be written over multiple pages. It's all handled internally so just add a pagebreak block. Easy!</p>"
"heading" => "New page content"
"in_contents" => "1"
]
"_group" => "section"
"page" => 2
]
]
]
images attribute
This contains the main images, which are separate from the post body images.
URL's should be used with the | media twig filter.
^ array:3 [▼
"list" => array:3 [▼
"alt" => "The List Image"
"class" => "optional-class"
"default" => "/list-image.png"
]
"banner" => array:3 [▼
"alt" => "The Banner Image"
"class" => "optional-class"
"default" => "/banner-image.png"
]
"social" => array:2 [▼
"twitter" => "/twitter-image.png"
"facebook" => "/facebook-image.png"
]
]
contents_list attribute
Post sections with in_contents set to true
^ array:3 [▼
0 => array:4 [▼
"title" => "A content block"
"page" => 1
"url" => "http://octobercms.local/uncategorized/first-blog-post#first"
0 => "contents_list"
]
1 => array:4 [▼
"title" => "Another content block"
"page" => 1
"url" => "http://octobercms.local/uncategorized/first-blog-post#second"
0 => "contents_list"
]
2 => array:4 [▼
"title" => "New page content"
"page" => 2
"url" => "http://octobercms.local/uncategorized/first-blog-post?page=2#third"
0 => "contents_list"
]
]
Post Relationships
| Relation | Type | Model |
|---|---|---|
| primary_category | BelongsTo | Category |
| author | BelongsTo | Backend\Models\User |
| editor | BelongsTo | Backend\Models\User |
| categories | BelongsToMany | Category |
| tags | BelongsToMany | Tag |
Category
Model Dynamedia\Posts\Category
Table dynamedia_posts_categories
Category Attributes
| Attribute | Type |
|---|---|
| name | String |
| slug | String |
| excerpt | Text (html) |
| body | Array |
| url | String * |
| post_list_ids | Array * |
| post_list_sort | String * |
| post_list_per_page | Integer * |
| computed_cms_layout | String * |
| path_from_root | Array * |
| path_to_root | Array * |
| subcategory_ids | Array * |
* Appended attribute
Category Relationships
| Relation | Type | Model |
|---|---|---|
| posts | BelongsToMany | Post |
| self | NestedTree | Category |
Tag
Model Dynamedia\Posts\Tag
Table dynamedia_posts_tags
Tag Attributes
| Attribute | Type |
|---|---|
| name | String |
| slug | String |
| excerpt | Text (html) |
| body | Array |
| is_approved | Boolean |
| url | String * |
| post_list_sort | String * |
| post_list_per_page | Integer * |
| computed_cms_layout | String * |
* Appended attribute
Tag Relationships
| Relation | Type | Model |
|---|---|---|
| posts | BelongsToMany | Post |
Profile
Model Dynamedia\Posts\Profile
Table dynamedia_posts_profiles
Profile Attributes
| Attribute | Type |
|---|---|
| username | String |
| website_url | String |
| facebook_handle | String |
| twitter_handle | String |
| instagram_handle | String |
| mini_biography | Text |
| full_biography | Text |
| url | String * |
| full_name | String * |
| seo_schema | Array * |
| user_id | Integer (Backend\Models\User ID) |
* Appended attribute
Profile Relationships
| Relation | Type | Model |
|---|---|---|
| user | BelongsToMany | Backend\Models\User |
NOTE: This documentation will be updated and improved upon regularly. Please also see https://posts-plugin.dynamedia.uk for more information.
dynamedia/posts-plugin 适用场景与选型建议
dynamedia/posts-plugin 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 180 次下载、GitHub Stars 达 4, 最近一次更新时间为 2021 年 10 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「blog」 「laravel」 「posts」 「publishing」 「october」 「october cms」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 dynamedia/posts-plugin 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 dynamedia/posts-plugin 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 dynamedia/posts-plugin 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Laravel package for opinionated blog implementation
Adds support for posts
Import an RSS-feed into blog
Faker provider for NumberNine CMS
Drop in blog, docs, tagging solution for Laravel
A blog module for AsgardCMS.
统计信息
- 总下载量: 180
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 12
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: proprietary
- 更新时间: 2021-10-12