本文整理汇总了PHP中PDF_Common::initialise_WP_filesystem_API方法的典型用法代码示例。如果您正苦于以下问题:PHP PDF_Common::initialise_WP_filesystem_API方法的具体用法?PHP PDF_Common::initialise_WP_filesystem_API怎么用?PHP PDF_Common::initialise_WP_filesystem_API使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PDF_Common
的用法示例。
在下文中一共展示了PDF_Common::initialise_WP_filesystem_API方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: do_template_migration
public static function do_template_migration()
{
/*
* Initialise the Wordpress Filesystem API
*/
if (PDF_Common::initialise_WP_filesystem_API(array(), 'gfpdfe_migrate') === false) {
return 'false';
}
/*
* If we got here we should have $wp_filesystem available
*/
global $wp_filesystem, $gfpdfe_data;
/*
* Convert paths for SSH/FTP users who are rooted to a directory along the server absolute path
*/
$base_template_directory = self::get_basedir($gfpdfe_data->template_location);
$current_pdf_path = self::get_basedir($gfpdfe_data->template_site_location);
if (is_dir($gfpdfe_data->old_template_location)) {
$previous_pdf_path = self::get_basedir($gfpdfe_data->old_template_location);
} elseif (is_dir($gfpdfe_data->old_3_6_template_site_location)) {
$previous_pdf_path = self::get_basedir($gfpdfe_data->old_3_6_template_site_location);
}
/* create the base template directory */
if (self::create_base_template_dir($base_template_directory) === false) {
return false;
}
/* create the site template directory */
if (self::create_site_template_dir($current_pdf_path) === false) {
return false;
}
if ($wp_filesystem->is_dir($previous_pdf_path)) {
if (is_dir($gfpdfe_data->old_template_location)) {
/* swap back to TRUE to delete the theme folder */
if (!self::pdf_extended_copy_directory($previous_pdf_path, $current_pdf_path, true, true, true)) {
return false;
}
} elseif (is_dir($gfpdfe_data->old_3_6_template_site_location)) {
/* swap back to TRUE to delete the theme folder */
if (!self::pdf_extended_copy_directory($previous_pdf_path, $current_pdf_path, true, false, true)) {
return false;
}
}
/*
* Clean up the DB
*/
delete_option('gfpdfe_automated_install');
}
return true;
}