Components\MediaManager\Controllers\Backend\MediaManagerController::show PHP Метод

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

Display the specified media_entry.
public show ( integer $id ) : Response
$id integer
Результат Response
    public function show($id)
    {
        $media_entry = MediaEntry::findOrFail($id);
        $this->layout->title = $media_entry->title;
        $this->layout->content = View::make($this->link_type . '.' . $this->current_theme . '.media_manager.show')->with('media_entry', $media_entry);
    }