mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
MINOR Fixed phpdoc documentation
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.4@103397 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
6330e4ec4b
commit
99b5937f42
@ -36,7 +36,6 @@ abstract class CMSBatchAction extends Object {
|
|||||||
* @param $pages The DataObjectSet of SiteTree objects to perform this batch action
|
* @param $pages The DataObjectSet of SiteTree objects to perform this batch action
|
||||||
* on.
|
* on.
|
||||||
* @param $helperMethod The method to call on each of those objects.
|
* @param $helperMethod The method to call on each of those objects.
|
||||||
* @para
|
|
||||||
*/
|
*/
|
||||||
public function batchaction(DataObjectSet $pages, $helperMethod, $successMessage, $arguments = array()) {
|
public function batchaction(DataObjectSet $pages, $helperMethod, $successMessage, $arguments = array()) {
|
||||||
$failures = 0;
|
$failures = 0;
|
||||||
|
@ -4,8 +4,7 @@
|
|||||||
* This class creates a 2-frame layout - left-tree and right-form - to sit beneath the main
|
* This class creates a 2-frame layout - left-tree and right-form - to sit beneath the main
|
||||||
* admin menu.
|
* admin menu.
|
||||||
*
|
*
|
||||||
* @package cms
|
ar
|
||||||
* @subpackage content
|
|
||||||
* @todo Create some base classes to contain the generic functionality that will be replicated.
|
* @todo Create some base classes to contain the generic functionality that will be replicated.
|
||||||
*/
|
*/
|
||||||
class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionProvider {
|
class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionProvider {
|
||||||
@ -1429,6 +1428,10 @@ JS;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @package cms
|
||||||
|
* @subpackage content
|
||||||
|
*/
|
||||||
class CMSMainMarkingFilter {
|
class CMSMainMarkingFilter {
|
||||||
|
|
||||||
function __construct() {
|
function __construct() {
|
||||||
|
@ -73,6 +73,10 @@ abstract class CMSSiteTreeFilter extends Object {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @package cms
|
||||||
|
* @subpackage content
|
||||||
|
*/
|
||||||
class CMSSiteTreeFilter_DeletedPages extends CMSSiteTreeFilter {
|
class CMSSiteTreeFilter_DeletedPages extends CMSSiteTreeFilter {
|
||||||
static function title() {
|
static function title() {
|
||||||
return _t('CMSSiteTreeFilter.DELETEDPAGES', "All pages, including deleted");
|
return _t('CMSSiteTreeFilter.DELETEDPAGES', "All pages, including deleted");
|
||||||
@ -90,6 +94,10 @@ class CMSSiteTreeFilter_DeletedPages extends CMSSiteTreeFilter {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @package cms
|
||||||
|
* @subpackage content
|
||||||
|
*/
|
||||||
class CMSSiteTreeFilter_ChangedPages extends CMSSiteTreeFilter {
|
class CMSSiteTreeFilter_ChangedPages extends CMSSiteTreeFilter {
|
||||||
static function title() {
|
static function title() {
|
||||||
return _t('CMSSiteTreeFilter.CHANGEDPAGES', "Changed pages");
|
return _t('CMSSiteTreeFilter.CHANGEDPAGES', "Changed pages");
|
||||||
@ -100,6 +108,10 @@ class CMSSiteTreeFilter_ChangedPages extends CMSSiteTreeFilter {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @package cms
|
||||||
|
* @subpackage content
|
||||||
|
*/
|
||||||
class CMSSiteTreeFilter_Search extends CMSSiteTreeFilter {
|
class CMSSiteTreeFilter_Search extends CMSSiteTreeFilter {
|
||||||
public $data;
|
public $data;
|
||||||
|
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Base class for HTML cleaning classes.
|
* Base class for HTML cleaning classes.
|
||||||
|
*
|
||||||
|
* @package sapphire
|
||||||
|
* @subpackage misc
|
||||||
*/
|
*/
|
||||||
abstract class HTMLCleaner extends Object {
|
abstract class HTMLCleaner extends Object {
|
||||||
/**
|
/**
|
||||||
|
@ -421,8 +421,10 @@ class SS_Report_FakeQuery extends SQLQuery {
|
|||||||
*
|
*
|
||||||
* It also makes calls to 2 empty methods that you can override {@link beforeQuery()} and
|
* It also makes calls to 2 empty methods that you can override {@link beforeQuery()} and
|
||||||
* {@link afterQuery()}
|
* {@link afterQuery()}
|
||||||
|
*
|
||||||
|
* @package cms
|
||||||
|
* @subpackage reports
|
||||||
*/
|
*/
|
||||||
|
|
||||||
abstract class SS_ReportWrapper extends SS_Report {
|
abstract class SS_ReportWrapper extends SS_Report {
|
||||||
protected $baseReport;
|
protected $baseReport;
|
||||||
|
|
||||||
|
@ -398,7 +398,7 @@ class SecurityAdmin extends LeftAndMain implements PermissionProvider {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the entire site tree as a nested set of ULs.
|
* Return the entire site tree as a nested set of ULs.
|
||||||
* @return string Unordered list <UL> HTML
|
* @return string Unordered list HTML
|
||||||
*/
|
*/
|
||||||
public function SiteTreeAsUL() {
|
public function SiteTreeAsUL() {
|
||||||
$obj = singleton($this->stat('tree_class'));
|
$obj = singleton($this->stat('tree_class'));
|
||||||
|
Loading…
Reference in New Issue
Block a user