Implemented role and permission storage.
Introduced the CMS_PARTIAL_NODE and CMS_PARTIAL_USER.
Added support for node storage extension
- storage of data specific to each node content type,
- in addition to the core CMS_NODE)
- For now, only implemented for SQL storage.
Note: in current version, CMS_PAGE support is hard coded in the core,
(as opposed to be only supported by the node module.)
Commented/removed for now, the Web API code to update node summary, title, via REST request.
16 lines
255 B
CSS
16 lines
255 B
CSS
ul.cms-nodes {
|
|
list-style-type: none;
|
|
padding: 3px 3px 3px 3px;
|
|
border: solid 1px #ccc;
|
|
}
|
|
|
|
li.cms_type_page {
|
|
border-top: dotted 1px #ccc;
|
|
}
|
|
li.cms_type_page a::before {
|
|
content: "[page] ";
|
|
}
|
|
li.cms_type_page:first-child {
|
|
border-top: none;
|
|
}
|