class Author

An author.

@package PHPUnit @author Bernhard Schussek <bschussek@2bepublished.at> @copyright 2001-2013 Sebastian Bergmann <sebastian@phpunit.de> @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License @link http://www.phpunit.de/ @since Class available since Release 3.6.0

Hierarchy

Expanded class hierarchy of Author

13 string references to 'Author'
comment_admin_overview in drupal/core/modules/comment/comment.admin.inc
Form constructor for the comment overview administration form.
comment_field_extra_fields in drupal/core/modules/comment/comment.module
Implements hook_field_extra_fields().
comment_token_info in drupal/core/modules/comment/comment.tokens.inc
Implements hook_token_info().
comment_views_data in drupal/core/modules/comment/comment.views.inc
Implements hook_views_data().
hook_token_info in drupal/core/modules/system/system.api.php
Provide information about available placeholder tokens and token types.

... See full list

File

drupal/core/vendor/phpunit/phpunit/Tests/_files/Author.php, line 55

View source
class Author {

  // the order of properties is important for testing the cycle!
  public $books = array();
  private $name = '';
  public function __construct($name) {
    $this->name = $name;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Author::$books public property
Author::$name private property
Author::__construct public function