class LorempixumProvider in Devel images provider 8
Same name and namespace in other branches
- 7 plugins/devel_image_provider/provider/LorempixumProvider.class.php \LorempixumProvider
Add support for lorempixum.com.
Hierarchy
- class \DevelImagesProviderBase implements DevelImagesProviderInterface
- class \LorempixumProvider
Expanded class hierarchy of LorempixumProvider
1 string reference to 'LorempixumProvider'
- lorempixum.inc in plugins/
devel_image_provider/ provider/ lorempixum.inc
File
- plugins/
devel_image_provider/ provider/ LorempixumProvider.class.php, line 10 - Lorempixum support class.
View source
class LorempixumProvider extends DevelImagesProviderBase {
public function __construct($plugin) {
parent::__construct($plugin);
$this->provider_base_url = 'http://lorempixum.com';
}
function settingsForm() {
$form = parent::settingsForm();
// Provider specific settings.
$form['devel_image_provider_' . $this->plugin['name']]['devel_image_provider_categories'] = array(
'#type' => 'select',
'#title' => t('Lorempixum Categories'),
'#options' => drupal_map_assoc(array(
'any',
'abstract',
'animals',
'city',
'food',
'nightlife',
'fashion',
'people',
'nature',
'sports',
'technics',
'transport',
)),
'#multiple' => TRUE,
'#size' => 12,
'#default_value' => isset($this->settings['devel_image_provider_categories']) ? $this->settings['devel_image_provider_categories'] : 'any',
);
$form['devel_image_provider_' . $this->plugin['name']]['devel_image_provider_include_text'] = array(
'#type' => 'radios',
'#title' => t('Choose whether or not to add text inside the generated image'),
'#default_value' => isset($this->settings['devel_image_provider_include_text']) ? $this->settings['devel_image_provider_include_text'] : 'default',
'#options' => array(
'default' => t('No text'),
'random' => t('Random text'),
'custom' => t('Custom text'),
),
);
$form['devel_image_provider_' . $this->plugin['name']]['devel_image_provider_custom_text'] = array(
'#type' => 'textfield',
'#title' => t('Custom Text'),
'#maxlength' => 255,
'#description' => t('Enter some custom text to be rendered instead of the default image dimensions.'),
'#default_value' => isset($this->settings['devel_image_provider_custom_text']) ? $this->settings['devel_image_provider_custom_text'] : NULL,
'#states' => array(
'visible' => array(
':input[name="available_providers[devel_image_provider_method_selected][devel_image_provider_' . $this->plugin['name'] . '][devel_image_provider_include_text]"]' => array(
'value' => 'custom',
),
),
),
);
return $form;
}
public function generateImage($object, $field, $instance, $bundle) {
static $images = array();
$min_resolution = empty($instance['settings']['min_resolution']) ? '100x100' : $instance['settings']['min_resolution'];
$max_resolution = empty($instance['settings']['max_resolution']) ? '600x600' : $instance['settings']['max_resolution'];
$extension = 'jpg';
if (!isset($images[$extension][$min_resolution][$max_resolution]) || count($images[$extension][$min_resolution][$max_resolution]) <= DEVEL_GENERATE_IMAGE_MAX) {
if ($tmp_file = drupal_tempnam('temporary://', 'imagefield_')) {
$destination = $tmp_file . '.' . $extension;
file_unmanaged_move($tmp_file, $destination, FILE_CREATE_DIRECTORY);
$min = explode('x', $min_resolution);
$max = explode('x', $max_resolution);
$max[0] = $max[0] < $min[0] ? $min[0] : $max[0];
$max[1] = $max[1] < $min[1] ? $min[1] : $max[1];
$width = rand((int) $min[0], (int) $max[0]);
$height = rand((int) $min[1], (int) $max[1]);
$gray = isset($this->settings['devel_image_provider_gray']) ? $this->settings['devel_image_provider_gray'] : NULL;
$gray_part = $gray ? '/g' : '';
$url = "{$this->provider_base_url}" . $gray_part . "/{$width}/{$height}";
$categories = isset($this->settings['devel_image_provider_categories']) ? $this->settings['devel_image_provider_categories'] : array();
$category = array_rand($categories);
if (!empty($category) && $category != 'any') {
$url .= '/' . $category;
}
$include_text = isset($this->settings['devel_image_provider_include_text']) ? $this->settings['devel_image_provider_include_text'] : FALSE;
switch ($include_text) {
case 'custom':
$custom_text = isset($this->settings['devel_image_provider_custom_text']) ? $this->settings['devel_image_provider_custom_text'] : '';
break;
case 'random':
$custom_text = trim(substr(devel_create_greeking(mt_rand(1, 4)), 0, 16));
break;
case 'default':
default:
$custom_text = '';
break;
}
if (!empty($custom_text)) {
// Replace the spaces with - as per lorempixum specifications.
$custom_text = str_replace(' ', '-', check_plain($custom_text));
$url .= '/' . $custom_text;
}
$method = isset($this->settings['devel_image_provider_get_method']) ? $this->settings['devel_image_provider_get_method'] : 'file_get_contents';
$path = devel_image_provider_get_file($url, $destination, $method);
$source = new stdClass();
$source->uri = $path;
$source->uid = 1;
// TODO: randomize? Use case specific.
$source->filemime = 'image/jpg';
$destination_dir = $field['settings']['uri_scheme'] . '://' . $instance['settings']['file_directory'];
file_prepare_directory($destination_dir, FILE_CREATE_DIRECTORY);
$destination = $destination_dir . '/' . basename($path);
$file = file_move($source, $destination, FILE_CREATE_DIRECTORY);
}
else {
return FALSE;
}
}
else {
// Select one of the images we've already generated for this field.
$file = new stdClass();
$file->fid = array_rand($images[$extension][$min_resolution][$max_resolution]);
}
$object_field['fid'] = $file->fid;
$object_field['alt'] = devel_create_greeking(4);
$object_field['title'] = devel_create_greeking(4);
return $object_field;
}
}