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


PHP Export::transliterate方法代码示例

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


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

示例1: createTemplateForService

 protected function createTemplateForService($id_service)
 {
     global $currentIndex;
     $currentIndex = $_SERVER['SCRIPT_NAME'] . (($controller = Tools::getValue('controller')) ? '?controller=' . $controller : '');
     $url = $currentIndex . '&token=' . Tools::getAdminTokenLite('AdminMoussiqFree');
     $obj = new $this->className((int) $id_service);
     if (Validate::isLoadedObject($obj)) {
         $tpl = '';
         $path = dirname(__FILE__) . '/templates/';
         if ((!file_exists($path) || !is_dir($path)) && !mkdir($path, 0777)) {
             $this->_errors[] = $this->l('Please create "templates" directory in your moussique free folder');
             return false;
         } elseif (!is_writable($path)) {
             $this->_errors[] = $this->l('Your "templates" directory is not writeable.');
             return false;
         }
         $exportFields = array('name', 'template', 'enclosure', 'delimiter', 'header');
         foreach ($exportFields as $prop) {
             if (!property_exists($obj, $prop)) {
                 $this->_errors[] = $this->l('Missing property:') . ' "' . $prop . '"';
                 return false;
             }
             $tpl .= base64_encode($prop) . ':' . base64_encode($obj->{$prop}) . "\n";
         }
         if (!sizeof($this->_errors) && trim($tpl) != '') {
             $handler = fopen($path . Export::transliterate(str_replace(' ', '_', $obj->name)) . '.mtpl', 'w');
             if (!$handler) {
                 $this->_errors[] = $this->l('Could not create template file');
                 return false;
             }
             fwrite($handler, $tpl);
             fclose($handler);
             Tools::redirectAdmin($url . '&id_moussiqfree_service=' . $obj->id . '&updatemoussiqfree_service&tplFile=' . Export::transliterate(str_replace(' ', '_', $obj->name)));
         } else {
             $this->_errors[] = $this->l('Unable to select necessary template fields');
             return false;
         }
     }
     $this->_errors[] = $this->l('Unable to load selected service');
     return false;
 }
开发者ID:pedalracer,项目名称:free_modules_1.5,代码行数:41,代码来源:AdminMoussiqFree.php


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