1 block.update.inc DashboardUpdateBlock::__construct($plugin_name, array $data)

Create a new Block object.

Parameters

string $plugin_name: The Layout plugin name. In the case of a block, this is a key identifying the block module, delta, and (if applicable) child delta, separated by colons.

array $data: Settings that provide current configuration of the block, such as access rules, style settings, block settings, etc.

Overrides Block::__construct

File

core/modules/dashboard/includes/block.update.inc, line 11
Available Updates dashboard block.

Class

DashboardUpdateBlock

Code

function __construct($plugin_name, array $data) {
  parent::__construct($plugin_name, $data);

  // Set defaults.
  $this->settings += array(
    'project_types' => array(
      'core',
      'modules',
      'themes',
      'layouts',
    ),
  );
}