[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: Stub.php
<?php namespace Nwidart\Modules\Support; class Stub { /** * The stub path. * * @var string */ protected $path; /** * The base path of stub file. * * @var null|string */ protected static $basePath = null; /** * The replacements array. * * @var array */ protected $replaces = []; /** * The contructor. * * @param string $path * @param array $replaces */ public function __construct($path, array $replaces = []) { $this->path = $path; $this->replaces = $replaces; } /** * Create new self instance. * * @param string $path * @param array $replaces * * @return self */ public static function create($path, array $replaces = []) { return new static($path, $replaces); } /** * Set stub path. * * @param string $path * * @return self */ public function setPath($path) { $this->path = $path; return $this; } /** * Get stub path. * * @return string */ public function getPath() { $path = static::getBasePath() . $this->path; return file_exists($path) ? $path : __DIR__ . '/../Commands/stubs' . $this->path; } /** * Set base path. * * @param string $path */ public static function setBasePath($path) { static::$basePath = $path; } /** * Get base path. * * @return string|null */ public static function getBasePath() { return static::$basePath; } /** * Get stub contents. * * @return mixed|string */ public function getContents() { $contents = file_get_contents($this->getPath()); foreach ($this->replaces as $search => $replace) { $contents = str_replace('$' . strtoupper($search) . '$', $replace, $contents); } return $contents; } /** * Get stub contents. * * @return string */ public function render() { return $this->getContents(); } /** * Save stub to specific path. * * @param string $path * @param string $filename * * @return bool */ public function saveTo($path, $filename) { return file_put_contents($path . '/' . $filename, $this->getContents()); } /** * Set replacements array. * * @param array $replaces * * @return $this */ public function replace(array $replaces = []) { $this->replaces = $replaces; return $this; } /** * Get replacements. * * @return array */ public function getReplaces() { return $this->replaces; } /** * Handle magic method __toString. * * @return string */ public function __toString() { return $this->render(); } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.85 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002