taitava/silverstripe-pricelist
Composer 安装命令:
composer require taitava/silverstripe-pricelist
包简介
Just a simple pricelist functionality that makes it possible to create products and have them listed in specific pricelists. No e-commerce functions.
README 文档
README
Setup
- Extend SiteTree (or some other class derived from it):
mysite/_config/pricelist.yml:
SiteTree: extensions: - PricelistSiteTreeExtension
Note! If you apply the extension to any other class than SiteTree, you need to define this additional configuration in mysite/_config/pricelist.yml:
Pricelist: belongs_many_many: Pages: *YourCustomClassNameHere*
If you forget this, (at least) the backend will crash when you go to add a new Pricelist to your pricelist page. This additional configuration is not needed if you just extend the whole SiteTree class, as that's already configured by default.
- Put this to
themes/*your-theme-folder*/Page.ss(or to some other template file):
$AllPricelists
- If you want to adjust some configuration settings, you can put these to
mysite/_config/pricelist.yml:
Pricelist:
include_stylesheet: false
currency_sign: '€' #Whether to use the Requirements class to include this module's own stylesheet in frontend to perform some small styling.
currency_side: 'right'
PricelistItem:
hide_zero_prices: false #If true, do not display anything in the price column for items whose price is 0.
Note that the above listing contains the default values, so if they seem good for you, you do not need to copypaste this list to anywhere.
-
Run
/dev/build?flush=allin your browser. -
Go to the CMS and edit some page. You should see a Pricelists tab there.
Contribution
If you have any ideas about how to improve this module or any questions, I would be glad to hear them! :) Please raise an issue or create a pull request - which ever you like.
统计信息
- 总下载量: 21
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-09-21