ZwiiCMS/core/class/sitemap/Runtime.class.php
fredtempez 2f332d2bc3 Revert "Merge branch '10500' into 11000"
This reverts commit 6d576a16a6, reversing
changes made to 7766c16ed9.
2021-03-10 18:57:41 +01:00

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);
}
}