You are here

function fft_storage_dir in Field Formatter Template 8.2

Same name and namespace in other branches
  1. 8 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 322
Field formatter template.

Code

function fft_storage_dir() {
  return \Drupal::config('fft.settings')
    ->get('fft_storage_dir');
}