File: /home/c1190199/public_html/_alex/wp-content/themes/portada/class/Theme.WPFileSystem.class.php
<?php
/******************************************************************************/
/******************************************************************************/
class Portada_ThemeWPFileSystem
{
/**************************************************************************/
function __construct()
{
global $wp_filesystem;
if(empty($wp_filesystem))
{
require_once(ABSPATH.'/wp-admin/includes/file.php');
WP_Filesystem();
}
}
/**************************************************************************/
function put_contents($path,$content,$mode)
{
global $wp_filesystem;
return($wp_filesystem->put_contents($path,$content,$mode));
}
/**************************************************************************/
function get_contents($path)
{
global $wp_filesystem;
return($wp_filesystem->get_contents($path));
}
/**************************************************************************/
}
/******************************************************************************/
/******************************************************************************/