定制 xini/silverstripe-metacounter 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

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

Version License

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

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 4
  • Forks: 1
  • 开发语言: JavaScript

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2015-04-29