forked from unclecheese/DataObjectManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.php
23 lines (19 loc) · 797 Bytes
/
_config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
* DataObjectManager config file
* This can be used to store registrations for SortableDataObject
* e.g. SortableDataObject::add_sortable_class(MyDataObject')
* Followed by /dev/build
*
* Otherwise, put SortableDataObject registrations in mysite/_config.php
*
*/
// Allow DataObjectManager to take control of the AssetAdmin using the AssetManager field
DataObjectManager::allow_assets_override(true);
// Allow DataObjectManager to override some of the core CSS in the CMS (work in progress)
DataObjectManager::allow_css_override(false);
SimpleWysiwygField::set_default_configuration(array(
array('cut','copy','paste','|','bold','italic','underline','|','left','center','right'),
array('ol','ul','|','hyperlink','unlink','image','|','formats')
));
?>