当前位置: 首页>>代码示例>>PHP>>正文


PHP wpl_global::upload方法代码示例

本文整理汇总了PHP中wpl_global::upload方法的典型用法代码示例。如果您正苦于以下问题:PHP wpl_global::upload方法的具体用法?PHP wpl_global::upload怎么用?PHP wpl_global::upload使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在wpl_global的用法示例。


在下文中一共展示了wpl_global::upload方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: install_package

 private function install_package()
 {
     /** upload file into tmp directory **/
     $file = wpl_request::getVar('wpl_addon_file', '', 'FILES');
     $tmp_directory = wpl_global::init_tmp_folder();
     $dest = $tmp_directory . 'package.zip';
     $response = wpl_global::upload($file, $dest, array('zip'), 20971520);
     #20MB
     if (trim($response['error']) != '') {
         $this->response($response);
     }
     $zip_file = $dest;
     wpl_global::zip_extract($zip_file, $tmp_directory);
     $script_file = $tmp_directory . 'installer.php';
     if (!wpl_file::exists($script_file)) {
         $this->response(array('error' => __("Installer file doesn't exist!", WPL_TEXTDOMAIN), 'message' => ''));
     }
     /** including installer and run the install method **/
     include $script_file;
     if (!class_exists('wpl_installer')) {
         $this->response(array('error' => __("Installer class doesn't exist!", WPL_TEXTDOMAIN), 'message' => ''));
     }
     /** run install script **/
     $wpl_installer = new wpl_installer();
     $wpl_installer->path = $tmp_directory;
     if (!$wpl_installer->run()) {
         $this->response(array('error' => $wpl_installer->error, 'message' => ''));
     }
     /** Trigger Event **/
     wpl_global::event_handler('package_installed', array('package_id' => isset($wpl_installer->addon_id) ? $wpl_installer->addon_id : 0));
     $message = $wpl_installer->message ? $wpl_installer->message : __('Package installed.', WPL_TEXTDOMAIN);
     $this->response(array('error' => '', 'message' => $message));
 }
开发者ID:gvh1993,项目名称:project-vvvh,代码行数:33,代码来源:wpl_ajax.php

示例2: import_settings

 private function import_settings()
 {
     $file = wpl_request::getVar('wpl_import_file', '', 'FILES');
     $tmp_directory = wpl_global::init_tmp_folder();
     $ext = strtolower(wpl_file::getExt($file['name']));
     $settings_file = $tmp_directory . 'settings.' . $ext;
     $response = wpl_global::upload($file, $settings_file, array('json', 'xml'), 20971520);
     #20MB
     if (trim($response['error']) != '') {
         echo json_encode($response);
         exit;
     }
     if (wpl_settings::import_settings($settings_file)) {
         $error = '';
         $message = __('Settings have been imported successfuly!', WPL_TEXTDOMAIN);
     } else {
         $error = '1';
         $message = __('Cannot import settings!', WPL_TEXTDOMAIN);
     }
     echo json_encode(array('error' => $error, 'message' => $message));
     exit;
 }
开发者ID:gvh1993,项目名称:project-vvvh,代码行数:22,代码来源:wpl_ajax.php


注:本文中的wpl_global::upload方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。