forked from ZwiiCMS-Team/ZwiiCMS
0d157b8957
This reverts commit f7d2c36086ca01f54ec95c55a744f96e665ac5a7, reversing changes made to 60bb775109578bf05e9689c8452d7b4afaa33347.
37 lines
669 B
PHP
Executable File
37 lines
669 B
PHP
Executable File
<?php
|
|
|
|
namespace Icamys\SitemapGenerator;
|
|
|
|
class Runtime
|
|
{
|
|
public function extension_loaded($extname)
|
|
{
|
|
return extension_loaded($extname);
|
|
}
|
|
|
|
public function is_writable($filepath)
|
|
{
|
|
return is_writable($filepath);
|
|
}
|
|
|
|
public function curl_init($url)
|
|
{
|
|
return curl_init($url);
|
|
}
|
|
|
|
public function curl_setopt($handle, $option, $value)
|
|
{
|
|
return curl_setopt($handle, $option, $value);
|
|
}
|
|
|
|
public function curl_exec($handle)
|
|
{
|
|
return curl_exec($handle);
|
|
}
|
|
|
|
public function curl_getinfo($handle, $option = null)
|
|
{
|
|
return curl_getinfo($handle, $option);
|
|
}
|
|
}
|