mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
Merge remote-tracking branch 'origin/3'
This commit is contained in:
commit
a09795b3a2
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
||||
.sass-cache
|
||||
.DS_Store
|
@ -4,6 +4,8 @@ language: php
|
||||
php:
|
||||
- 5.3
|
||||
|
||||
sudo: false
|
||||
|
||||
env:
|
||||
- DB=MYSQL CORE_RELEASE=master
|
||||
- DB=PGSQL CORE_RELEASE=master
|
||||
@ -19,4 +21,4 @@ before_script:
|
||||
- cd ~/builds/ss
|
||||
|
||||
script:
|
||||
- phpunit reports/tests/
|
||||
- phpunit reports/tests/
|
||||
|
@ -25,7 +25,7 @@
|
||||
* ===========================
|
||||
*
|
||||
* Right now, all subclasses of SS_Report will be shown in the ReportAdmin. In SS3 there is only
|
||||
* one place where reports can go, so this class is greatly simplifed from from its version in SS2.
|
||||
* one place where reports can go, so this class is greatly simplifed from its version in SS2.
|
||||
*
|
||||
* @package reports
|
||||
*/
|
||||
@ -284,8 +284,9 @@ class SS_Report extends ViewableData {
|
||||
new GridFieldSortableHeader(),
|
||||
new GridFieldDataColumns(),
|
||||
new GridFieldPaginator(),
|
||||
new GridFieldPrintButton(),
|
||||
new GridFieldExportButton()
|
||||
new GridFieldButtonRow('after'),
|
||||
new GridFieldPrintButton('buttons-after-left'),
|
||||
new GridFieldExportButton('buttons-after-left')
|
||||
);
|
||||
$gridField = new GridField('Report',$this->title(), $items, $gridFieldConfig);
|
||||
$columns = $gridField->getConfig()->getComponentByType('GridFieldDataColumns');
|
||||
|
@ -47,7 +47,7 @@ class ReportAdmin extends LeftAndMain implements PermissionProvider {
|
||||
$this->reportObject = (isset($allReports[$this->reportClass])) ? $allReports[$this->reportClass] : null;
|
||||
|
||||
// Set custom options for TinyMCE specific to ReportAdmin
|
||||
HtmlEditorConfig::get('cms')->setOption('ContentCSS', project() . '/css/editor.css');
|
||||
HtmlEditorConfig::get('cms')->setOption('content_css', project() . '/css/editor.css');
|
||||
HtmlEditorConfig::get('cms')->setOption('Lang', i18n::get_tinymce_lang());
|
||||
|
||||
// Always block the HtmlEditorField.js otherwise it will be sent with an ajax request
|
||||
|
@ -1,20 +1,20 @@
|
||||
<div id="reportadmin-cms-content" class="cms-content center cms-tabset $BaseCSSClasses" data-layout-type="border" data-pjax-fragment="Content">
|
||||
|
||||
<div class="cms-content-header north">
|
||||
<% with EditForm %>
|
||||
<% with $EditForm %>
|
||||
<div class="cms-content-header-info">
|
||||
<% include BackLink_Button %>
|
||||
<% with Controller %>
|
||||
<% include BackLink_Button %>
|
||||
<% with $Controller %>
|
||||
<% include CMSBreadcrumbs %>
|
||||
<% end_with %>
|
||||
<% end_with %>
|
||||
</div>
|
||||
<% end_with %>
|
||||
</div>
|
||||
|
||||
<div class="cms-content-fields center ui-widget-content" data-layout-type="border">
|
||||
|
||||
|
||||
$EditForm
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
@ -1,41 +1,41 @@
|
||||
<form $FormAttributes>
|
||||
|
||||
|
||||
|
||||
<p style="display: none;" class="message " id="Form_EditForm_error"/>
|
||||
|
||||
|
||||
|
||||
<div id="ScrollPanel">
|
||||
<fieldset>
|
||||
$FieldMap.ReportTitle.FieldHolder
|
||||
$FieldMap.ReportDescription.FieldHolder
|
||||
|
||||
<% if FieldMap.Filters.Children %>
|
||||
|
||||
<% if $FieldMap.Filters.Children %>
|
||||
<h4><% _t('ReportAdminForm.FILTERBY', 'Filter by') %></h4>
|
||||
|
||||
|
||||
<div class="filters">
|
||||
<% loop FieldMap.Filters %>
|
||||
<% loop Children %>
|
||||
<% loop $FieldMap.Filters %>
|
||||
<% loop $Children %>
|
||||
$FieldHolder
|
||||
<% end_loop %>
|
||||
<% end_loop %>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="action_updatereport">
|
||||
<% if FieldMap.action_updatereport %>
|
||||
<% if $FieldMap.action_updatereport %>
|
||||
$FieldMap.action_updatereport.Field
|
||||
<% end_if %>
|
||||
</div>
|
||||
|
||||
|
||||
<div style="clear: both"> </div>
|
||||
<% end_if %>
|
||||
|
||||
|
||||
$FieldMap.ReportContent.FieldHolder
|
||||
|
||||
<% loop HiddenFields %>$Field<% end_loop %>
|
||||
|
||||
|
||||
<% loop $HiddenFields %>$Field<% end_loop %>
|
||||
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="clear"><!-- --></div>
|
||||
</form>
|
Loading…
Reference in New Issue
Block a user