ryanpotter / silverstripe-design-field

Silverstripe Design Field

安装次数: 48

依赖项: 2

建议者: 0

安全性: 0

星标: 6

关注者: 4

分支: 2

公开问题: 1

语言:CSS

类型:silverstripe模块

0.1.1 2015-08-26 04:56 UTC

This package is not auto-updated.

Last update: 2024-09-20 21:22:16 UTC


README

##Silverstripe Design Field

{  
   "selector":".myobject",
   "padding-top":"100px",
   "padding-bottom":"100px",
   "margin-top":"10px",
   "margin-bottom":"10px",
   "background":"#ffffff"
}

###方法摘要

  • | - ---- | ---- public | __construct($name, $title = null, $selector = null, $fields = null, $value = null)
private static $db = array(
  'MyObject' => 'Design'
);
DesignField::create('MyObject', _t('DesignField.MyObject', 'My Object'),
  '.myobject',
  array(
      'padding-top' => 'TextField',
      'padding-right' => 'TextField',
      'padding-bottom' => 'TextField',
      'padding-left' => 'TextField',
      'margin-top' => 'TextField',
      'margin-right' => 'TextField',
      'margin-bottom' => 'TextField',
      'margin-left' => 'TextField',
      'color' => 'ColorField',
      'background' => 'ColorField',
      'font-size' => array(
          'type' => 'DropdownField',
          'value' => array(
              '16px',
              '25px',
              '36px'
          )
      )
  ));

返回样式字符串

$this->dbObject('MyObject')->InlineStyle();