bubble('parsedownElement', [$title, $alt, $class, $id, $reset]); } /** * Return HTML markup from the medium. * * @param string $title * @param string $alt * @param string $class * @param string $id * @param bool $reset * @return string */ public function html($title = null, $alt = null, $class = null, $id = null, $reset = true) { return $this->bubble('html', [$title, $alt, $class, $id, $reset]); } /** * Switch display mode. * * @param string $mode * * @return $this */ public function display($mode = 'source') { return $this->bubble('display', [$mode], false); } /** * Switch thumbnail. * * @param string $type * * @return $this */ public function thumbnail($type = 'auto') { $this->bubble('thumbnail', [$type], false); return $this->bubble('getThumbnail', [], false); } /** * Turn the current Medium into a Link * * @param boolean $reset * @param array $attributes * @return Link */ public function link($reset = true, array $attributes = []) { return $this->bubble('link', [$reset, $attributes], false); } /** * Turn the current Medium into a Link with lightbox enabled * * @param int $width * @param int $height * @param boolean $reset * @return Link */ public function lightbox($width = null, $height = null, $reset = true) { return $this->bubble('lightbox', [$width, $height, $reset], false); } /** * Bubble a function call up to either the superclass function or the parent Medium instance * * @param string $method * @param array $arguments * @param boolean $testLinked * @return Medium */ protected function bubble($method, array $arguments = [], $testLinked = true) { if (!$testLinked || $this->linked) { return $this->parent ? call_user_func_array(array($this->parent, $method), $arguments) : $this; } return call_user_func_array(array($this, 'parent::' . $method), $arguments); } }