mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
8d4e1dd6e0
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@77012 467b73ca-7a2a-4603-9d3b-597d59a354a9
25 lines
590 B
PHP
Executable File
25 lines
590 B
PHP
Executable File
<?php
|
|
/**
|
|
* A field that allows you to attach an image to a record from within a iframe - designed for use in AJAX forms where it
|
|
* is not possible to use {@link SimpleImageField}.
|
|
*
|
|
* @package forms
|
|
* @subpackage fields-files
|
|
*/
|
|
class ImageField extends FileIFrameField {
|
|
|
|
/**
|
|
* @return SimpleImageField_Disabled
|
|
*/
|
|
public function performReadonlyTransformation() {
|
|
return new SimpleImageField_Disabled($this->name, $this->title, $this->value, $this->form);
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function FileTypeName() {
|
|
return _t('ImageField.IMAGE', 'Image');
|
|
}
|
|
|
|
} |