You are here

public function DevelImagesProviderBase::__construct in Devel images provider 8

Same name and namespace in other branches
  1. 7 plugins/devel_image_provider/provider/base.inc \DevelImagesProviderBase::__construct()
7 calls to DevelImagesProviderBase::__construct()
DummyImageProvider::__construct in plugins/devel_image_provider/provider/DummyImageProvider.class.php
FlickholdrProvider::__construct in plugins/devel_image_provider/provider/FlickholdrProvider.class.php
LorempixumProvider::__construct in plugins/devel_image_provider/provider/LorempixumProvider.class.php
PlaceamanateeProvider::__construct in plugins/devel_image_provider/provider/PlaceamanateeProvider.class.php
PlaceholdProvider::__construct in plugins/devel_image_provider/provider/PlaceholdProvider.class.php

... See full list

7 methods override DevelImagesProviderBase::__construct()
DummyImageProvider::__construct in plugins/devel_image_provider/provider/DummyImageProvider.class.php
FlickholdrProvider::__construct in plugins/devel_image_provider/provider/FlickholdrProvider.class.php
LorempixumProvider::__construct in plugins/devel_image_provider/provider/LorempixumProvider.class.php
PlaceamanateeProvider::__construct in plugins/devel_image_provider/provider/PlaceamanateeProvider.class.php
PlaceholdProvider::__construct in plugins/devel_image_provider/provider/PlaceholdProvider.class.php

... See full list

File

plugins/devel_image_provider/provider/base.inc, line 57
Base devel image providers plugin class.

Class

DevelImagesProviderBase
An abstract implementation of DevelImagesProviderInterface.

Code

public function __construct($plugin) {
  $this->plugin = $plugin;
  $this->settings = variable_get('devel_image_provider_settings_' . $this->plugin['name'], array());
}