本文整理汇总了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;
}