xini/silverstripe-metacounter
最新稳定版本:3.1.0
Composer 安装命令:
composer require xini/silverstripe-metacounter
包简介
Adds a counter to the meta fields for remaining characters
README 文档
README
SilverStripe Metadata Limit Counter
Overview
Adds limit counters to the meta title and description fields in the CMS.
Two levels of limits can be configured to allow longer texts for certain search engines (i.e. Google).
Requirements
- SilverStripe CMS 5.x
Note: this version is compatible with SilverStripe 5. For SilverStripe 4, please see the 2 release line. For SilverStripe 3, please see the 1.1 release line.
Installation
Install the module using composer:
composer require innoweb/silverstripe-metacounter dev-master
Then run dev/build.
Configuration
The default limits are as follows and can be overridden in your site's config.yml:
Innoweb\MetaCounter\Model\SiteTreeExtension:
meta_title_length: 55
meta_title_length_extended: 55
meta_description_length: 160
meta_description_length_extended: 300
Once the text exceeds the configured length of a field the counter will turn orange, once it exceeds length_extended it will turn red and count backwards.
If length_extended is not configured or if it is the same as length, the counter will turn red if the text exceeds length.
Troubleshooting
Sometimes you may add a MetaTitle field to your Page sub/class, with correct length configurations, but no counter appears.
If you have added the field manually rather than via kinglozzer/metatitle sometimes the Page extension in this module will run before your MetaTitle field is present (and as result there is no field for the counter to attach to).
To protect against this, use beforeUpdateCMSFields() inside your getCMSFields():
public function getCMSFields()
{
$this->beforeUpdateCMSFields(function(FieldList $fields) {
$fields->insertBefore(
'MetaDescription',
TextField::create('MetaTitle', $this->fieldLabel('MetaTitle'))
);
});
$fields = parent::getCMSFields();
// your other class-specific CMS fields setup
return $fields;
}
License
BSD 3-Clause License, see License
xini/silverstripe-metacounter 适用场景与选型建议
xini/silverstripe-metacounter 是一款 基于 JavaScript 开发的 Composer 扩展包,目前已累计 317 次下载、GitHub Stars 达 0, 最近一次更新时间为 2015 年 04 月 29 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「metadata」 「silverstripe」 「limit」 「counter」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 xini/silverstripe-metacounter 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 xini/silverstripe-metacounter 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 xini/silverstripe-metacounter 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Rapid pagination without using OFFSET
Limit number of records that can be added to a SilverStripe GridField
PHP PDO Mysql select statement iterator implemented as multiple queries using LIMIT clauses
Magento 2 Discount Amount Limiter
A Laravel Pulse card to track users & URL's that are being throttled by your Rate Limiters
统计信息
- 总下载量: 317
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 28
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2015-04-29