HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpmuhibbah/wp-content/plugins/give/src/Framework/FieldsAPI/Concerns/InsertNode.php
<?php

namespace Give\Framework\FieldsAPI\Concerns;

use Give\Framework\FieldsAPI\Contracts\Collection;
use Give\Framework\FieldsAPI\Contracts\Node;
use Give\Framework\FieldsAPI\Exceptions\NameCollisionException;
use Give\Framework\FieldsAPI\Exceptions\ReferenceNodeNotFoundException;

/**
 * @since 2.10.2
 */
trait InsertNode
{
    /**
     * @inheritDoc
     *
     * @since 2.10.2
     *
     * @throws ReferenceNodeNotFoundException|NameCollisionException
     */
    public function insertAfter(string $siblingName, Node $node): self
    {
        $this->checkNameCollisionDeep($node);
        $this->insertAfterRecursive($siblingName, $node);

        return $this;
    }

    /**
     * @since 2.10.2
     *
     * @return void
     * @throws ReferenceNodeNotFoundException|NameCollisionException
     */
    protected function insertAfterRecursive(string $siblingName, Node $node)
    {
        $siblingIndex = $this->getNodeIndexByName($siblingName);
        if (null !== $siblingIndex) {
            $this->insert(
                $node,
                $siblingIndex + 1
            );

            return;
        }

        if ($this->nodes) {
            foreach ($this->nodes as $childNode) {
                if ($childNode instanceof Collection) {
                    $childNode->insertAfter($siblingName, $node);
                }
            }

            return;
        }

        throw new ReferenceNodeNotFoundException($siblingName);
    }

    /**
     * @inheritDoc
     *
     * @since 2.10.2
     *
     * @throws ReferenceNodeNotFoundException|NameCollisionException
     */
    public function insertBefore(string $siblingName, Node $node): self
    {
        $this->checkNameCollisionDeep($node);
        $this->insertBeforeRecursive($siblingName, $node);

        return $this;
    }

    /**
     * @since 2.10.2
     *
     * @return void
     * @throws ReferenceNodeNotFoundException|NameCollisionException
     */
    protected function insertBeforeRecursive(string $siblingName, Node $node)
    {
        $siblingIndex = $this->getNodeIndexByName($siblingName);
        if (null !== $siblingIndex) {
            $this->insert(
                $node,
                $siblingIndex - 1
            );

            return;
        }

        if ($this->nodes) {
            foreach ($this->nodes as $childNode) {
                if ($childNode instanceof Collection) {
                    $childNode->insertBefore($siblingName, $node);
                }
            }

            return;
        }

        throw new ReferenceNodeNotFoundException($siblingName);
    }

    /**
     * @since 2.24.0 Make index optional to avoid rebuilding array when appending
     * @since 2.10.2
     *
     * @param int|null $index appends to end if null
     *
     * @throws NameCollisionException
     */
    protected function insert(Node $node, int $index = null)
    {
        $this->checkNameCollisionDeep($node);

        if ($index === null) {
            $this->nodes[] = $node;
        } else {
            array_splice($this->nodes, $index, 0, [$node]);
        }
    }

    /**
     * @inheritdoc
     *
     * @since 2.10.2
     *
     * @throws NameCollisionException
     */
    public function append(Node ...$nodes): self
    {
        foreach ($nodes as $node) {
            $this->insert($node);
        }

        return $this;
    }
}