123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <?php
-
- namespace Illuminate\View\Concerns;
-
- use InvalidArgumentException;
-
- trait ManagesStacks
- {
- /**
- * All of the finished, captured push sections.
- *
- * @var array
- */
- protected $pushes = [];
-
- /**
- * All of the finished, captured prepend sections.
- *
- * @var array
- */
- protected $prepends = [];
-
- /**
- * The stack of in-progress push sections.
- *
- * @var array
- */
- protected $pushStack = [];
-
- /**
- * Start injecting content into a push section.
- *
- * @param string $section
- * @param string $content
- * @return void
- */
- public function startPush($section, $content = '')
- {
- if ($content === '') {
- if (ob_start()) {
- $this->pushStack[] = $section;
- }
- } else {
- $this->extendPush($section, $content);
- }
- }
-
- /**
- * Stop injecting content into a push section.
- *
- * @return string
- * @throws \InvalidArgumentException
- */
- public function stopPush()
- {
- if (empty($this->pushStack)) {
- throw new InvalidArgumentException('Cannot end a push stack without first starting one.');
- }
-
- return tap(array_pop($this->pushStack), function ($last) {
- $this->extendPush($last, ob_get_clean());
- });
- }
-
- /**
- * Append content to a given push section.
- *
- * @param string $section
- * @param string $content
- * @return void
- */
- protected function extendPush($section, $content)
- {
- if (! isset($this->pushes[$section])) {
- $this->pushes[$section] = [];
- }
-
- if (! isset($this->pushes[$section][$this->renderCount])) {
- $this->pushes[$section][$this->renderCount] = $content;
- } else {
- $this->pushes[$section][$this->renderCount] .= $content;
- }
- }
-
- /**
- * Start prepending content into a push section.
- *
- * @param string $section
- * @param string $content
- * @return void
- */
- public function startPrepend($section, $content = '')
- {
- if ($content === '') {
- if (ob_start()) {
- $this->pushStack[] = $section;
- }
- } else {
- $this->extendPrepend($section, $content);
- }
- }
-
- /**
- * Stop prepending content into a push section.
- *
- * @return string
- * @throws \InvalidArgumentException
- */
- public function stopPrepend()
- {
- if (empty($this->pushStack)) {
- throw new InvalidArgumentException('Cannot end a prepend operation without first starting one.');
- }
-
- return tap(array_pop($this->pushStack), function ($last) {
- $this->extendPrepend($last, ob_get_clean());
- });
- }
-
- /**
- * Prepend content to a given stack.
- *
- * @param string $section
- * @param string $content
- * @return void
- */
- protected function extendPrepend($section, $content)
- {
- if (! isset($this->prepends[$section])) {
- $this->prepends[$section] = [];
- }
-
- if (! isset($this->prepends[$section][$this->renderCount])) {
- $this->prepends[$section][$this->renderCount] = $content;
- } else {
- $this->prepends[$section][$this->renderCount] = $content.$this->prepends[$section][$this->renderCount];
- }
- }
-
- /**
- * Get the string contents of a push section.
- *
- * @param string $section
- * @param string $default
- * @return string
- */
- public function yieldPushContent($section, $default = '')
- {
- if (! isset($this->pushes[$section]) && ! isset($this->prepends[$section])) {
- return $default;
- }
-
- $output = '';
-
- if (isset($this->prepends[$section])) {
- $output .= implode(array_reverse($this->prepends[$section]));
- }
-
- if (isset($this->pushes[$section])) {
- $output .= implode($this->pushes[$section]);
- }
-
- return $output;
- }
-
- /**
- * Flush all of the stacks.
- *
- * @return void
- */
- public function flushStacks()
- {
- $this->pushes = [];
- $this->prepends = [];
- $this->pushStack = [];
- }
- }
|