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


PHP CFile::putContent方法代码示例

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


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

示例1: get_unanimated_gif

/**
 * Обрезает анимированный .gif, оставляя только первый кадр.
 * Обрезанный гиф сохраняет в той же директории, где и оригинал, под тем же именем, только с префиксом 'na_'.
 * Если файл с таким именем (с префиксом) уже есть, то ничего не делает.
 * Возвращает в случае успеха имя обрезанного гифа, в случае ошибки (или это не анимированный гиф) -- имя оригинала.
 *
 * @param string $dir путь к оригиналу (от корня, без '/' в начале)
 * @param string $orig_name имя гифа оригинала.
 * @param string $alt_dir имя альтернативной директории для поиска файла (отличной от foto)
 * @return string имя обрезанного гифа
 */
function get_unanimated_gif($dir, $orig_name, $alt_dir = false)
{
    if (CFile::getext($orig_name) != 'gif') {
        return $orig_name;
    }
    $memBuff = new memBuff();
    $res = $memBuff->get($orig_name);
    if ($res) {
        return $res;
    }
    $orig_file = $alt_dir ? trim($alt_dir, '/') . '/' . $orig_name : "users/" . substr($dir, 0, 2) . "/" . $dir . "/foto/" . $orig_name;
    $orig_content = @file_get_contents(WDCPREFIX_LOCAL . '/' . $orig_file);
    $unan_content = unanimate_gif($orig_content);
    if ($unan_content !== false) {
        $unan_name = "na_" . $orig_name;
        $unan_file = dirname($orig_file) . "/" . $unan_name;
        $unan = new CFile($unan_file);
        if (!$unan->id) {
            $unan = new CFile($orig_file);
            $unan->name = $unan_name;
            $unan->size = strlen($unan_content);
            $put = $unan->putContent($unan_file, $unan_content);
            // Записываем измененный файл
            if ($put) {
                $memBuff->set($orig_name, $unan_name, 3600 * 12);
                return $unan_name;
            }
        } else {
            $memBuff->set($orig_name, $unan_name, 3600 * 12);
            return $unan_name;
        }
    }
    return $orig_name;
    // Если не смогли сохранить возвращаем оригинал
}
开发者ID:amage,项目名称:fl-ru-damp,代码行数:46,代码来源:web.php

示例2: saveFile

 /**
  * Сохраняем документ на сайте.
  * 
  * @return \CFile
  */
 public function saveFile()
 {
     $login = 'admin';
     $content = $this->getOutput();
     $file = new CFile();
     $file->path = 'users/' . substr($login, 0, 2) . "/{$login}/upload/";
     $file->name = basename($file->secure_tmpname($file->path, '.odt'));
     $file->size = strlen($content);
     if ($file->putContent($file->path . $file->name, $content)) {
         return $file;
     }
 }
开发者ID:kapai69,项目名称:fl-ru-damp,代码行数:17,代码来源:ODTDocument.php

示例3: traitementDossier

 /**
  * Traitement des retours en erreur d'xml d'un praticien
  *
  * @param int $chir_id praticien de la consultation
  *
  * @return void|string
  */
 static function traitementDossier($chir_id)
 {
     $files = array();
     $fs_source_reception = CExchangeSource::get("reception-tarmed-CMediusers-{$chir_id}", "file_system", true, null, false);
     if (!$fs_source_reception->_id || !$fs_source_reception->active) {
         return null;
     }
     $count_files = CMbPath::countFiles($fs_source_reception->host);
     if ($count_files < 100) {
         try {
             $files = $fs_source_reception->receive();
         } catch (CMbException $e) {
             return CAppUI::tr($e->getMessage());
         }
     }
     $delfile_read_reject = CAppUI::conf("dPfacturation Other delfile_read_reject", CGroups::loadCurrent());
     foreach ($files as $_file) {
         $fs = new CSourceFileSystem();
         $rejet = new self();
         $rejet->praticien_id = $chir_id;
         $rejet->file_name = basename($_file);
         if ($msg = $rejet->store()) {
             return $msg;
         }
         $rejet->readXML($fs->getData($_file));
         //Sauvegarde du XML en CFile
         $new_file = new CFile();
         $new_file->setObject($rejet);
         $new_file->file_name = basename($_file);
         $new_file->file_type = "application/xml";
         $new_file->author_id = CAppUI::$user->_id;
         $new_file->fillFields();
         $new_file->updateFormFields();
         $new_file->forceDir();
         $new_file->putContent(trim($fs->getData($_file)));
         if ($msg = $new_file->store()) {
             mbTrace($msg);
         }
         //Suppression du fichier selon configuration
         if ($delfile_read_reject) {
             $fs->delFile($_file);
         }
     }
     return null;
 }
开发者ID:OpenXtrem,项目名称:mediboard-test,代码行数:52,代码来源:CFactureRejet.class.php

示例4: getReferencePointerToExternalReport

 /**
  * OBX Segment with reference pointer to external report
  *
  * @param DOMNode   $OBX    DOM node
  * @param CMbObject $object object
  * @param String    $name   name
  *
  * @return bool
  */
 function getReferencePointerToExternalReport(DOMNode $OBX, CMbObject $object, $name)
 {
     $exchange_hl7v2 = $this->_ref_exchange_hl7v2;
     $sender = $exchange_hl7v2->_ref_sender;
     //Récupération de l'emplacement et du type du fichier (full path)
     $observation = $this->getObservationValue($OBX);
     $rp = explode("^", $observation);
     $pointer = CMbArray::get($rp, 0);
     $type = CMbArray::get($rp, 2);
     // Création d'un lien Hypertext sur l'objet
     if ($type == "HTML") {
         $hyperlink = new CHyperTextLink();
         $hyperlink->setObject($object);
         $hyperlink->name = $name;
         $hyperlink->link = $pointer;
         $hyperlink->loadMatchingObject();
         if ($msg = $hyperlink->store()) {
             $this->codes[] = "E343";
             return false;
         }
         return true;
     }
     // Chargement des objets associés à l'expéditeur
     /** @var CInteropSender $sender_link */
     $object_links = $sender->loadRefsObjectLinks();
     if (!$object_links) {
         $this->codes[] = "E340";
         return false;
     }
     $sender_link = new CInteropSender();
     $files_category = new CFilesCategory();
     // On récupère toujours une seule catégorie, et une seule source associée à l'expéditeur
     foreach ($object_links as $_object_link) {
         if ($_object_link->_ref_object instanceof CFilesCategory) {
             $files_category = $_object_link->_ref_object;
         }
         if ($_object_link->_ref_object instanceof CInteropSender) {
             $sender_link = $_object_link->_ref_object;
             continue 1;
         }
     }
     // Aucun expéditeur permettant de récupérer les fichiers
     if (!$sender_link->_id) {
         $this->codes[] = "E340";
         return false;
     }
     $authorized_sources = array("CSenderFileSystem", "CSenderFTP");
     // L'expéditeur n'est pas prise en charge pour la réception de fichiers
     if (!CMbArray::in($sender_link->_class, $authorized_sources)) {
         $this->codes[] = "E341";
         return false;
     }
     $sender_link->loadRefsExchangesSources();
     // Aucune source permettant de récupérer les fichiers
     if (!$sender_link->_id) {
         $this->codes[] = "E342";
         return false;
     }
     $source = $sender_link->getFirstExchangesSources();
     $path = str_replace("\\", "/", $pointer);
     $path = basename($path);
     if ($source instanceof CSourceFileSystem) {
         $path = $source->getFullPath() . "/{$path}";
     }
     // Exception déclenchée sur la lecture du fichier
     try {
         $content = $source->getData("{$path}");
     } catch (Exception $e) {
         $this->codes[] = "E345";
         return false;
     }
     if (!$type) {
         $type = CMbPath::getExtension($path);
     }
     $file_type = $this->getFileType($type);
     $file_name = $this->getObservationFilename($OBX);
     // Gestion du CFile
     $file = new CFile();
     $file->setObject($object);
     $file->file_name = $file_name ? $file_name : $name;
     $file->file_type = $file_type;
     $file->loadMatchingObject();
     if ($files_category->_id && $sender->_configs["associate_category_to_a_file"]) {
         $file->file_category_id = $files_category->_id;
     }
     $file->file_date = "now";
     $file->doc_size = strlen($content);
     $file->fillFields();
     $file->updateFormFields();
     $file->putContent($content);
     if ($msg = $file->store()) {
//.........这里部分代码省略.........
开发者ID:fbone,项目名称:mediboard4,代码行数:101,代码来源:CHL7v2RecordObservationResultSet.class.php

示例5: saveThemeCss

 public static function saveThemeCss($theme_name, $stylesheets, $skin = null)
 {
     if (!$skin) {
         $skin = modApiFunc('Configuration', 'getValue', STOREFRONT_ACTIVE_SKIN);
     }
     $backup_path = CConf::get('themes_backup_dir') . $skin . '.' . $theme_name . date('.Y-m-d.H-i-s') . '.css';
     $file = new CFile($backup_path);
     $file->putContent($stylesheets);
     $theme_path = self::getThemePath($theme_name, $skin);
     $file = new CFile($theme_path);
     if ($file->putContent($stylesheets)) {
         return array('result' => self::OK, 'message' => '');
     }
     return array('result' => self::FAIL, 'message' => getXMsg('LF', 'LF_THEME_CANT_WRITE'), 'what_to_do' => strtr(getXMsg('LF', 'LF_THEME_PERMISSIONS'), array('%theme_file%' => $theme_path)), 'path' => $theme_path);
 }
开发者ID:KICHIRO20,项目名称:-Myproject_part1-,代码行数:15,代码来源:look_feel_api.php

示例6: attachFiles

 /**
  * create the CFiles attached to the mail
  *
  * @param CMailAttachments[] $attachList The list of CMailAttachment
  * @param CPop               $popClient  the CPop client
  *
  * @return void
  */
 function attachFiles($attachList, $popClient)
 {
     //size limit
     $size_required = CAppUI::pref("getAttachmentOnUpdate");
     if ($size_required == "") {
         $size_required = 0;
     }
     foreach ($attachList as $_attch) {
         $_attch->mail_id = $this->_id;
         $_attch->loadMatchingObject();
         if (!$_attch->_id) {
             $_attch->store();
         }
         //si preference taille ok OU que la piece jointe est incluse au texte => CFile
         if ($_attch->bytes <= $size_required || $_attch->disposition == "INLINE") {
             $file = new CFile();
             $file->setObject($_attch);
             $file->author_id = CAppUI::$user->_id;
             if (!$file->loadMatchingObject()) {
                 $file_pop = $popClient->decodeMail($_attch->encoding, $popClient->openPart($this->uid, $_attch->getpartDL()));
                 $file->file_name = $_attch->name;
                 //apicrypt attachment
                 if (strpos($_attch->name, ".apz") !== false) {
                     $file_pop = CApicrypt::uncryptAttachment($popClient->source->object_id, $file_pop);
                 }
                 //file type detection
                 $first = is_array($file_pop) ? reset($file_pop) : $file_pop;
                 $mime = $this->extensionDetection($first);
                 //file name
                 $infos = pathinfo($_attch->name);
                 $extension = $infos['extension'];
                 $mime_extension = strtolower(end(explode("/", $mime)));
                 if (strtolower($extension) != $mime_extension) {
                     $file->file_name = $infos['filename'] . "." . $mime_extension;
                 }
                 $file->file_type = $mime ? $mime : $_attch->getType($_attch->type, $_attch->subtype);
                 $file->fillFields();
                 $file->updateFormFields();
                 $file->putContent($file_pop);
                 $file->store();
             }
         }
     }
 }
开发者ID:fbone,项目名称:mediboard4,代码行数:52,代码来源:CUserMail.class.php

示例7: webprofGenerateRss


//.........这里部分代码省略.........
     $xml = '';
     $host = str_replace(HTTP_PREFIX, '', $GLOBALS['host']);
     $HTTP_PREFIX = "https://";
     $XMLData = '';
     $xml .= '<?xml version="1.0" encoding="utf-8"?>' . "\n";
     $xml .= '<!DOCTYPE source>' . "\n";
     $xml .= '<source creation-time="' . date('Y-m-d H:i:s') . ' GMT+3" host="' . $host . '">' . "\n";
     $xml .= '   <users>' . "\n";
     if (is_array($users) && count($users)) {
         $XMLData = '';
         foreach ($users as $user) {
             $frl_name = trim("{$user['uname']} {$user['usurname']}");
             $frl_name = iconv('CP1251', 'UTF-8', htmlspecialchars($frl_name, ENT_QUOTES));
             $frl_spec_main = iconv('CP1251', 'UTF-8', htmlspecialchars(getProfessionName($user['spec'], $professions), ENT_QUOTES));
             switch ($user['status_type']) {
                 case '0':
                     $frl_status = 'free';
                     break;
                 case '1':
                     $frl_status = 'busy';
                     break;
                 case '2':
                     $frl_status = 'absent';
                     break;
                 default:
                     $frl_status = 'no status';
                     break;
             }
             $frl_spec_ext = '';
             $spec_ext_ids = professions::GetProfsAddSpec($user['uid']);
             if ($spec_ext_ids) {
                 foreach ($spec_ext_ids as $spec_id) {
                     $frl_spec_ext .= "<spec>" . iconv('CP1251', 'UTF-8', htmlspecialchars(getProfessionName($spec_id, $professions), ENT_QUOTES)) . "</spec>";
                 }
             }
             $frl_tags = '';
             $tags = kwords::getUserKeys($user['uid'], $user['spec']);
             $bIsModer = kwords::isModerUserKeys($user['uid'], $user['spec']);
             if ($tags && !$bIsModer) {
                 foreach ($tags as $tag) {
                     $frl_tags .= "<tag>" . iconv('CP1251', 'UTF-8', htmlspecialchars($tag, ENT_QUOTES)) . "</tag>";
                 }
             }
             $frl_cost_hour = '';
             $frl_cost_month = '';
             if ($user['cost_hour'] != 0) {
                 $frl_cost_hour = (double) $user['cost_hour'];
                 switch ($user['cost_type_hour']) {
                     case '1':
                         $frl_cost_hour .= " Euro";
                         break;
                     case '2':
                         $frl_cost_hour .= " Руб";
                         break;
                     case '3':
                         $frl_cost_hour .= " FM";
                         break;
                     default:
                         $frl_cost_hour .= " USD";
                         break;
                 }
                 $frl_cost_hour = iconv('CP1251', 'UTF-8', $frl_cost_hour);
             }
             if ($user['cost_month'] != 0) {
                 $frl_cost_month = (double) $user['cost_month'];
                 switch ($user['cost_type_month']) {
                     case '1':
                         $frl_cost_month .= " Euro";
                         break;
                     case '2':
                         $frl_cost_month .= " Руб";
                         break;
                     case '3':
                         $frl_cost_month .= " FM";
                         break;
                     default:
                         $frl_cost_month .= " USD";
                         break;
                 }
                 $frl_cost_month = iconv('CP1251', 'UTF-8', $frl_cost_month);
             }
             $XMLData .= "<user>";
             $XMLData .= "<name>{$frl_name}</name>";
             $XMLData .= "<spec_main>{$frl_spec_main}</spec_main>";
             $XMLData .= "<spec_ext>{$frl_spec_ext}</spec_ext>";
             $XMLData .= "<status>{$frl_status}</status>";
             $XMLData .= "<rating>{$user['rating']}</rating>";
             $XMLData .= "<cost_from_hour>{$frl_cost_hour}</cost_from_hour>";
             $XMLData .= "<cost_from_month>{$frl_cost_month}</cost_from_month>";
             $XMLData .= "<url>" . $HTTP_PREFIX . "{$host}/users/{$user['login']}</url>";
             $XMLData .= "<tags>{$frl_tags}</tags>";
             $XMLData .= "</user>\n";
         }
     }
     $xml .= $XMLData . "\n";
     $xml .= '   </users>' . "\n";
     $xml .= '</source>' . "\n";
     $file = new CFile();
     return $file->putContent($filename, $xml);
 }
开发者ID:amage,项目名称:fl-ru-damp,代码行数:101,代码来源:freelancer.php

示例8: joobleGenerateRss

 /**
  * Создает xml файл для Jooble.ru
  * 
  * @param   $filename   string  полный путь к файлу куда webdav должен сохранить получившийся xml
  * @param string $interval Интервал (1 day, 2 days, 1 month)
  * @return text $filename полный путь к файлу куда webdav должен сохранить получившийся xml
  */
 function joobleGenerateRss($filename, $prjs)
 {
     require_once $_SERVER['DOCUMENT_ROOT'] . "/classes/project_exrates.php";
     $project_exRates = project_exrates::GetAll();
     $exch = array(1 => 'FM', 'USD', 'Euro', 'Руб');
     $translate_exRates = array(0 => 2, 1 => 3, 2 => 4, 3 => 1);
     $xml = '';
     $host = str_replace(HTTP_PREFIX, '', $GLOBALS['host']);
     $HTTP_PREFIX = "https://";
     $xml = '<?xml version="1.0" encoding="utf-8"?>' . "\n";
     $xml .= '<source creation-time="' . date('Y-m-d H:i:s') . ' GMT+3" host="' . $host . '">' . "\n";
     $xml .= '   <jobs>' . "\n";
     foreach ($prjs as $row) {
         $city = $row['city_name'] ? $row['city_name'] : '';
         $location = $row['country_name'] ? $row['country_name'] : '';
         $location .= $location ? ', ' . $city : $city;
         $location = preg_replace("/, \$/", "", $location);
         $location = html_entity_decode($location, ENT_QUOTES, 'cp1251');
         if (!$location) {
             $location = 'Россия';
         }
         $row['categories'] = self::getProjectCategories($row['id']);
         if (!empty($row['categories'])) {
             $name_case = false;
             foreach ($row['categories'] as $cat) {
                 if ((int) $cat['subcategory_id'] > 0) {
                     if ($cat['name_case']) {
                         $name_case[] = $cat['name_case'];
                     }
                 }
             }
             if ($name_case) {
                 $name_case = implode(". ", $name_case) . ". ";
             }
         }
         $cat = html_entity_decode($row['cat_name'], ENT_QUOTES, 'cp1251');
         $name = html_entity_decode($name_case . $row['project_name'], ENT_QUOTES, 'cp1251');
         unset($name_case);
         $descr = html_entity_decode($row['descr'], ENT_QUOTES, 'cp1251');
         $contacts = $row['e_login'];
         $contacts = $row['e_surname'] ? html_entity_decode($row['e_surname'], ENT_QUOTES, 'cp1251') . ', ' . $contacts : $contacts;
         $contacts = $row['e_name'] ? html_entity_decode($row['e_name'], ENT_QUOTES, 'cp1251') . ' ' . $contacts : $contacts;
         $currency = '';
         switch ($row['currency']) {
             case 0:
                 $currency = '$';
                 break;
             case 1:
                 $currency = ' Euro';
                 break;
             case 2:
                 $currency = ' Руб.';
                 break;
             case 3:
                 $currency = ' Руб.';
                 break;
         }
         if ($row['cost'] && $row['currency'] == 3) {
             $row['cost'] = preg_replace("/\\.00\$/", "", sprintf("%.2f", round($row['cost'] * $project_exRates[trim($translate_exRates[$row['currency']]) . '4'], 2)));
         }
         $xml .= '        <job id="' . $row['id'] . '">
         <link>' . $HTTP_PREFIX . $host . getFriendlyURL('project', $row['id']) . '</link>
         ';
         $name .= ' (удаленно)';
         $xml .= '           <name>' . xmloutofrangechars(iconv('CP1251', 'UTF-8', htmlspecialchars($name, ENT_QUOTES))) . '</name>';
         $xml .= '<description>' . xmloutofrangechars(iconv('CP1251', 'UTF-8', htmlspecialchars($descr, ENT_QUOTES))) . '</description>
                 <region>' . iconv('CP1251', 'UTF-8', htmlspecialchars($location, ENT_QUOTES)) . "</region>\n                    <salary>" . ($row['cost'] ? iconv('CP1251', 'UTF-8', $row['cost'] . $currency) : '') . "</salary>\n                    <contacts>" . iconv('CP1251', 'UTF-8', $contacts) . "</contacts>\n                    <company></company>\n                    <expire>" . ($row['kind'] == 7 ? dateFormat("d.m.Y", $row['end_date']) : '') . "</expire>\n                    <updated>" . dateFormat("d.m.Y", $row['create_date']) . "</updated>\n        </job>\n";
     }
     $xml .= "</jobs>\n</source>";
     $file = new CFile();
     return $file->putContent($filename, $xml);
 }
开发者ID:amage,项目名称:fl-ru-damp,代码行数:79,代码来源:projects.php

示例9: CFile

    //            'from_time' => '2010-01-03',
    //            'to_time' => '2010-06-15'
    //        ),
    //        array(
    //            'from_time' => '2010-12-02',
    //            'to_time' => '2010-12-28'
    //        )
    //    ));
    $svg = $graph->render();
    $cfile = new CFile();
    $cfile->name = "{$file_name}.{$file_ext}";
    $cfile->path = "/users/" . substr($u_login, 0, 2) . "/{$u_login}/upload/";
    $cfile->modified = '';
    $cfile->putContent($file, $file_ext == 'html' ? svgToVml($svg) : $svg);
    $file_ext = $file_ext == 'svg' ? 'html' : 'svg';
    $file = "/users/" . substr($u_login, 0, 2) . "/{$u_login}/upload/{$file_name}.{$file_ext}";
    $cfile = new CFile();
    $cfile->name = "{$file_name}.{$file_ext}";
    $cfile->path = "/users/" . substr($u_login, 0, 2) . "/{$u_login}/upload/";
    $cfile->modified = '';
    $cfile->putContent($file, $file_ext == 'html' ? svgToVml($svg) : $svg);
    $svg = stristr($_SERVER['HTTP_USER_AGENT'], 'msie ') ? svgToVml($svg) : $svg;
    if (stristr($_SERVER['HTTP_USER_AGENT'], 'msie ')) {
        header('Content-type: text/html');
    } else {
        header('Content-type: image/svg+xml');
    }
    echo $svg;
} else {
    header("Location: " . WDCPREFIX . $file);
}
开发者ID:Nikitian,项目名称:fl-ru-damp,代码行数:31,代码来源:svg.php

示例10: array

 function _save_cert_to_file($cert_code)
 {
     if ($this->_validate_cert($cert_code, true) !== CERTIFICATE_OK) {
         $this->certificate = array();
         $this->certificate_status = CERTIFICATE_INVALID;
         return false;
     }
     $cert = ";<?php exit();?>\n" . $cert_code;
     $file = new CFile($this->license_cert_file);
     if (!$file->putContent($cert)) {
         $this->certificate = array();
         $this->certificate_status = CERTIFICATE_NOT_EXISTS;
         return false;
     }
     $this->license_cert = $this->_read_cert_from_file();
     $this->certificate_status = $this->_validate_cert();
     return true;
 }
开发者ID:KICHIRO20,项目名称:-Myproject_part1-,代码行数:18,代码来源:licensecert.php

示例11: array

     $svg->file_name = $file->file_name;
     $svg->file_type = "image/svg+xml";
     $svg->author_id = $file->author_id;
     $svg->loadMatchingObject();
     $svg->fillFields();
     $svg->setObject($file->_ref_object);
     $svg->updateFormFields();
     if (strpos($svg->file_name, ".") === false) {
         $svg->file_name = $svg->file_name . ".svg";
     }
     if (strpos($svg->file_name, ".fjs") !== false) {
         $svg->file_name = str_replace(".fjs", ".svg", $svg->file_name);
     }
     // @TODO : replace url by datauri
     $content = str_replace(array("&a=fileviewer", "&file_id", "&suppressHeaders"), array("&amp;a=fileviewer", "&amp;file_id", "&amp;suppressHeaders"), $content);
     if ($result = $svg->putContent(stripslashes($content))) {
         if ($msg = $svg->store()) {
             CAppUI::stepAjax($msg, UI_MSG_ERROR);
         } else {
             CAppUI::stepAjax("Dessin exporté avec succès", UI_MSG_OK);
         }
     }
     if ($remove_draft) {
         $msg = $file->delete();
         CAppUI::stepAjax($msg ? $msg : "CFile-msg-delete", $msg ? UI_MSG_WARNING : UI_MSG_OK);
     }
 } else {
     if ($result = $file->putContent(stripslashes($content))) {
         // no extensio;
         if (strpos($file->file_name, ".") === false) {
             $file->file_name .= ".fjs";
开发者ID:fbone,项目名称:mediboard4,代码行数:31,代码来源:do_drawfile_aed.php

示例12: exit

 function _save_key_to_file($file, $key)
 {
     if ($this->_is_license_key_valid($key)) {
         $_key = $this->formatKey($key);
         if ($_key !== false) {
             $str = ";<?php exit(); ?>\n";
             $str .= "key = " . $_key;
             $fp = new CFile($file);
             if (!$fp->putContent($str)) {
                 return LICENSE_KEY_NOT_WRITEABLE;
             }
             #$this->license_key = $_key;
             $this->license_key = $this->_read_key_from_file($this->license_key_file, ".php");
             if (!$this->_is_license_key_valid($this->license_key)) {
                 $this->license_key = LICENSE_KEY_UNDEFINED;
                 return LICENSE_KEY_FORMAT_INVALID;
             } else {
                 return LICENSE_KEY_FILE_OK;
             }
         } else {
             return LICENSE_KEY_FORMAT_INVALID;
         }
     } else {
         return LICENSE_KEY_FORMAT_INVALID;
     }
 }
开发者ID:KICHIRO20,项目名称:-Myproject_part1-,代码行数:26,代码来源:licensekey.php

示例13: makePDFarchive

 /**
  * Make a PDF document archive of the sejour (based on soins/print_dossier_soins)
  *
  * @param string $title   File title
  * @param bool   $replace Replace existing file
  *
  * @return bool
  * @throws CMbException
  */
 function makePDFarchive($title = "Dossier complet", $replace = false)
 {
     if (!CModule::getActive("soins")) {
         return false;
     }
     $query = array("m" => "soins", "a" => "print_dossier_soins", "sejour_id" => $this->_id, "dialog" => 1, "offline" => 1, "limit" => 10000, "_aio" => 1, "_aio_ignore_scripts" => 1);
     $base = $_SERVER["SCRIPT_NAME"] . "?" . http_build_query($query, "", "&");
     $result = CApp::serverCall("http://127.0.0.1{$base}");
     $content = $result["body"];
     $file = new CFile();
     $file->setObject($this);
     $file->file_name = "{$title}.pdf";
     $file->file_type = "application/pdf";
     /*if ($file->loadMatchingObject()) {
           if ($replace) {
             $file->delete();
     
             // New file
             $file = new CFile();
             $file->setObject($this);
             $file->file_name = "$title.pdf";
             $file->file_type = "application/pdf";
           }
         }*/
     $file->fillFields();
     $file->updateFormFields();
     $file->forceDir();
     $file->author_id = CAppUI::$user->_id;
     $compte_rendu = new CCompteRendu();
     $compte_rendu->_orientation = "portrait";
     $format = CCompteRendu::$_page_formats["a4"];
     $page_width = round(72 / 2.54 * $format[0], 2);
     $page_height = round(72 / 2.54 * $format[1], 2);
     $compte_rendu->_page_format = array(0, 0, $page_width, $page_height);
     $content = str_replace("<!DOCTYPE html>", "", $content);
     CHtmlToPDFConverter::init("CWkHtmlToPDFConverter");
     //CHtmlToPDFConverter::init("CPrinceXMLConverter");
     $pdf = CHtmlToPDFConverter::convert($content, $compte_rendu->_page_format, $compte_rendu->_orientation);
     $file->putContent($pdf);
     if ($msg = $file->store()) {
         throw new CMbException($msg);
     }
     return true;
 }
开发者ID:fbone,项目名称:mediboard4,代码行数:53,代码来源:CSejour.class.php

示例14: foreach

        } else {
            CAppUI::setMsg("CMailAttachments-msg-attachmentsaved", UI_MSG_OK);
        }
        $pop->close();
    }
} else {
    //je récupère TOUTES les pièces jointes
    $mail->loadRefsFwd();
    foreach ($mail->_attachments as $_att) {
        $file = new CFile();
        $file->setObject($_att);
        $file->author_id = $user->_id;
        $file->loadMatchingObject();
        if (!$file->_id) {
            $pop = new CPop($log_pop);
            $pop->open();
            $file_pop = $pop->decodeMail($_att->encoding, $pop->openPart($mail->uid, $_att->getpartDL()));
            $file->file_name = $_att->name;
            $file->file_type = $_att->getType($_att->type, $_att->subtype);
            $file->fillFields();
            $file->putContent($file_pop);
            if ($str = $file->store()) {
                CAppUI::setMsg($str, UI_MSG_ERROR);
            } else {
                CAppUI::setMsg("CMailAttachments-msg-attachmentsaved", UI_MSG_OK);
            }
            $pop->close();
        }
    }
}
echo CAppUI::getMsg();
开发者ID:fbone,项目名称:mediboard4,代码行数:31,代码来源:pop_attachment_to_cfile.php

示例15: addFile

 /**
  * Store a CFile linked to $this
  *
  * @param string $filename File name
  * @param string $filedata File contents
  *
  * @return bool
  */
 function addFile($filename, $filedata)
 {
     $file = new CFile();
     $file->setObject($this);
     $file->file_name = $filename;
     $file->file_type = "text/plain";
     $file->doc_size = strlen($filedata);
     $file->author_id = CAppUI::$instance->user_id;
     $file->fillFields();
     if (!$file->putContent($filedata)) {
         return false;
     }
     $file->store();
     return true;
 }
开发者ID:fbone,项目名称:mediboard4,代码行数:23,代码来源:CExtractPassages.class.php


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