Devise\Media\Helpers\Caption::text PHP Метод

text() публичный Метод

Finds the caption text for an image
public text ( string $imagePath ) : string
$imagePath string
Результат string
    public function text($imagePath)
    {
        $cptPath = $this->MediaPaths->imageCaptionPath($imagePath);
        if ($this->File->exists($cptPath)) {
            return $this->File->get($cptPath);
        }
        return null;
    }