Sh3ll
OdayForums


Server : Apache
System : Linux 145.162.205.92.host.secureserver.net 5.14.0-611.45.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Apr 1 05:56:53 EDT 2026 x86_64
User : tradze ( 1001)
PHP Version : 8.1.34
Disable Function : NONE
Directory :  /home/tradze/public_html/vendor/facade/ignition/src/Solutions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/tradze/public_html/vendor/facade/ignition/src/Solutions/SolutionTransformer.php
<?php

namespace Facade\Ignition\Solutions;

use Facade\IgnitionContracts\RunnableSolution;
use Facade\IgnitionContracts\Solution;
use Illuminate\Contracts\Support\Arrayable;
use Throwable;

class SolutionTransformer implements Arrayable
{
    /** @var \Facade\IgnitionContracts\Solution */
    protected $solution;

    public function __construct(Solution $solution)
    {
        $this->solution = $solution;
    }

    public function toArray(): array
    {
        $isRunnable = ($this->solution instanceof RunnableSolution);

        return [
            'class' => get_class($this->solution),
            'title' => $this->solution->getSolutionTitle(),
            'description' => $this->solution->getSolutionDescription(),
            'links' => $this->solution->getDocumentationLinks(),
            'is_runnable' => $isRunnable,
            'run_button_text' => $isRunnable ? $this->solution->getRunButtonText() : '',
            'run_parameters' => $isRunnable ? $this->solution->getRunParameters() : [],
            'action_description' => $isRunnable ? $this->solution->getSolutionActionDescription() : '',
            'execute_endpoint' => $this->executeEndpoint(),
        ];
    }

    protected function executeEndpoint(): string
    {
        try {
            return action('\Facade\Ignition\Http\Controllers\ExecuteSolutionController');
        } catch (Throwable $exception) {
            return '';
        }
    }
}

ZeroDay Forums Mini