404

[ Avaa Bypassed ]




Upload:

Command:

elspacio@18.227.183.94: ~ $
<?php

/*
 Copyright (c) 2009 hamcrest.org
 */

class GlobalFunctionFile extends FactoryFile
{
    /**
     * @var string containing function definitions
     */
    private $functions;

    public function __construct($file)
    {
        parent::__construct($file, '    ');
        $this->functions = '';
    }

    public function addCall(FactoryCall $call)
    {
        $this->functions .= "\n" . $this->generateFactoryCall($call);
    }

    public function build()
    {
        $this->addFileHeader();
        $this->addPart('functions_imports');
        $this->addPart('functions_header');
        $this->addCode($this->functions);
        $this->addPart('functions_footer');
    }

    public function generateFactoryCall(FactoryCall $call)
    {
        $code = "if (!function_exists('{$call->getName()}')) {\n";
        $code.= parent::generateFactoryCall($call);
        $code.= "}\n";

        return $code;
    }
}

Filemanager

Name Type Size Permission Actions
parts Folder 0755
FactoryCall.php File 611 B 0644
FactoryClass.php File 1.35 KB 0644
FactoryFile.php File 2.95 KB 0644
FactoryGenerator.php File 2.93 KB 0644
FactoryMethod.php File 5.51 KB 0644
FactoryParameter.php File 3.46 KB 0644
GlobalFunctionFile.php File 930 B 0644
StaticMethodFile.php File 773 B 0644
run.php File 1.06 KB 0644