function fft_storage_dir in Field Formatter Template 8
Same name and namespace in other branches
- 8.2 fft.module \fft_storage_dir()
Get storage directory.
Return value
string Path of storage dicrectory.
3 calls to fft_storage_dir()
- fft_field_formatter_render in ./
fft.module - Render field formatter.
- fft_get_templates in ./
fft.module - Get available templates.
- template_preprocess_views_formatter_template in modules/
vff/ vff.theme.inc - Prepares variables for views carousel template.
1 string reference to 'fft_storage_dir'
- SettingsForm::buildForm in src/
Form/ SettingsForm.php - Form constructor.
File
- ./
fft.module, line 312 - Field formatter template.
Code
function fft_storage_dir() {
return \Drupal::config('fft.settings')
->get('fft_storage_dir');
}