ctrl+shift+p filters: :st2 :st3 :win :osx :linux
浏览

MODx Revolution 图片段

作者 silentworks 全部 缺失

MODx Revolution Sublime Text 2 图片段

标签 图片段

详细信息

  • 2012.07.03.11.02.28
  • github.​com
  • github.​com
  • 12年前
  • 1年前
  • 12年前

安装次数

  • 总计 1K
  • Win 892
  • Mac 385
  • Linux 215
2021年8月6日 2021年8月5日 2021年8月4日 2021年8月3日 2021年8月2日 2021年8月1日 2021年7月31日 2021年7月30日 2021年7月29日 2021年7月28日 2021年7月27日 2021年7月26日 2021年7月25日 2021年7月24日 2021年7月23日 2021年7月22日 2021年7月21日 2021年7月20日 2021年7月19日 2021年7月18日 2021年7月17日 2021年7月16日 2021年7月15日 2021年7月14日 2021年7月13日 2021年7月12日 2021年7月11日 2021年7月10日 2021年7月9日 2021年7月8日 2021年7月7日 2021年7月6日 2021年7月5日 2021年7月4日 2021年7月3日 2021年7月2日 2021年7月1日 2021年6月30日 2021年6月29日 2021年6月28日 2021年6月27日 2021年6月26日 2021年6月25日 2021年6月24日 2021年6月23日
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

自述文件

源代码
raw.​githubusercontent.​com

MODx Sublime Text 2 Bundle

此捆绑包旨在在创建自定义管理页面时提供 MODx 的大部分功能和特性。

以下是目前已设置的和它们各自的上下文中的触发器列表。

ExtJS - source.js

触发器:extExtend

Ext.extend(MyClass.window.Name, ClassToExtend, {});

触发器:extReg

Ext.reg('myclass-window-name', MyClass.window.Name);

触发器:extText

{
    xtype: 'textfield'
    ,fieldLabel: 'label'
    ,name: 'name'
    ,anchor: '100%'
}

触发器:extFun

Namespace.window/grid/panel/tree/page/combo/config.ClassName = function (config) {
    config = config || {};
    Ext.applyIf(config, {
        title: 'title'
        ,url: connectorUrl
        ,fileUpload: true
        ,baseParams: {
            action: 'create'
        }
        ,fields: []
    });
    Namespace.window/grid/panel/tree/page/combo/config.ClassName.superclass.constructor.call(this, config);
};
Ext.extend(Namespace.window/grid/panel/tree/page/combo/config.ClassName, Ext/MODX.Class});
Ext.reg('namespace-window/grid/panel/tree/page/combo/config-classname', Namespace.window/grid/panel/tree/page/combo/config.ClassName);

xPDO - text.xml

触发器:aggregate

<aggregate alias="Alias" class="ClassName" local="local" foreign="id" cardinality="one|many" owner="foreign|local" />

触发器:composite

<composite alias="Alias" class="ClassName" local="local" foreign="id" cardinality="one|many" owner="foreign|local" />

触发器:field

<field key="name" dbtype="varchar" precision="160" attributes="unsigned" phptype="string" null="false" default="" />

触发器:field.int

<field key="name" dbtype="int" precision="11" attributes="unsigned" phptype="integer" null="false" default="" />

触发器:field.enum

<field key="name" dbtype="enum" precision="'db','cookie','redis'" phptype="string" null="false" default="" />

触发器:field.float

<field key="name" dbtype="float" precision="8,2" phptype="float" null="false" default="" />

触发器:model

<model package="ClassName" baseClass="xPDOObject" platform="mysql" defaultEngine="MyISAM">

</model>

触发器:object

<object class="ClassName" table="table_name" extends="xPDOSimpleObject">
    <field key="name" dbtype="varchar" precision="160" attributes="unsigned" phptype="string" null="false" default="" />
</object>