fromholdio/silverstripe-globalanchors
最新稳定版本:2.1.0
Composer 安装命令:
composer require fromholdio/silverstripe-globalanchors
包简介
A SilverStripe module that allows developers to define a static list of global html anchors - #nav, #content, etc - allowing them to be used for constructing links and etc by CMS users.
README 文档
README
A SilverStripe module that allows developers to define a static list of global html anchors - #nav, #content, etc - allowing them to be used for constructing links and etc by CMS users.
Intended to work inconjunction with modules that allow users to build links, or extending the create link functions in WYSIWYG editor, making global anchors available for link construction rather than only anchors within that content area.
Requirements
SilverStripe 4 or 5 or 6
Installation
composer require fromholdio/silverstripe-globalanchors
No anchors are setup by default - to complete the install, you need to setup your anchors config:
Fromholdio\GlobalAnchors\GlobalAnchors: anchors: nav: 'Main Navigation' content: 'Page Content' footer: 'Footer'
Usage example
Documentation will be forthcoming, but also, it's just one class and pretty lean. Check the class itself to see all options at the moment.
Key uses are below:
Use to fuel values in a dropdown
DropdownField::create( 'GlobalAnchorKey', 'Global Anchor', GlobalAnchors::get_anchors() );
Get anchor title from saved key
$key = $this->GlobalAnchorKey; $anchorTitle = GlobalAnchors::get_anchor_title($key);
统计信息
- 总下载量: 1.27k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 1
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2019-02-18