mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
MINOR phpdoc documentation
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@73508 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
893df91e33
commit
c66ebfaeb8
@ -26,6 +26,7 @@
|
|||||||
* @uses SearchContext
|
* @uses SearchContext
|
||||||
*
|
*
|
||||||
* @package cms
|
* @package cms
|
||||||
|
* @subpackage core
|
||||||
*/
|
*/
|
||||||
abstract class ModelAdmin extends LeftAndMain {
|
abstract class ModelAdmin extends LeftAndMain {
|
||||||
|
|
||||||
@ -250,6 +251,8 @@ abstract class ModelAdmin extends LeftAndMain {
|
|||||||
/**
|
/**
|
||||||
* Handles a managed model class and provides default collection filtering behavior.
|
* Handles a managed model class and provides default collection filtering behavior.
|
||||||
*
|
*
|
||||||
|
* @package cms
|
||||||
|
* @subpackage core
|
||||||
*/
|
*/
|
||||||
class ModelAdmin_CollectionController extends Controller {
|
class ModelAdmin_CollectionController extends Controller {
|
||||||
public $parentController;
|
public $parentController;
|
||||||
@ -758,6 +761,8 @@ class ModelAdmin_CollectionController extends Controller {
|
|||||||
/**
|
/**
|
||||||
* Handles operations on a single record from a managed model.
|
* Handles operations on a single record from a managed model.
|
||||||
*
|
*
|
||||||
|
* @package cms
|
||||||
|
* @subpackage core
|
||||||
* @todo change the parent controller varname to indicate the model scaffolding functionality in ModelAdmin
|
* @todo change the parent controller varname to indicate the model scaffolding functionality in ModelAdmin
|
||||||
*/
|
*/
|
||||||
class ModelAdmin_RecordController extends Controller {
|
class ModelAdmin_RecordController extends Controller {
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @package cms
|
||||||
|
* @subpackage tasks
|
||||||
|
*
|
||||||
* @todo Make this use the Task interface once it gets merged back into trunk
|
* @todo Make this use the Task interface once it gets merged back into trunk
|
||||||
*/
|
*/
|
||||||
class RebuildStaticCacheTask extends Controller {
|
class RebuildStaticCacheTask extends Controller {
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* @package cms
|
||||||
|
* @subpackage tests
|
||||||
|
*/
|
||||||
class CMSMainTest extends SapphireTest {
|
class CMSMainTest extends SapphireTest {
|
||||||
static $fixture_file = 'cms/tests/CMSMainTest.yml';
|
static $fixture_file = 'cms/tests/CMSMainTest.yml';
|
||||||
|
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* @package cms
|
||||||
|
* @subpackage tests
|
||||||
|
*/
|
||||||
class SecurityAdminTest extends FunctionalTest {
|
class SecurityAdminTest extends FunctionalTest {
|
||||||
static $fixture_file = 'cms/tests/CMSMainTest.yml';
|
static $fixture_file = 'cms/tests/CMSMainTest.yml';
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user