本文整理汇总了PHP中TikiLib::remove_non_word_characters_and_accents方法的典型用法代码示例。如果您正苦于以下问题:PHP TikiLib::remove_non_word_characters_and_accents方法的具体用法?PHP TikiLib::remove_non_word_characters_and_accents怎么用?PHP TikiLib::remove_non_word_characters_and_accents使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TikiLib
的用法示例。
在下文中一共展示了TikiLib::remove_non_word_characters_and_accents方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
/**
* Constructor
* poss add the prefPrefix and data init as params
* also getting a named item should be a separate step?
*
* @param string $name
*/
public function __construct($name)
{
global $prefs;
$this->initPrefPrefix();
$this->name = strtolower(TikiLib::remove_non_word_characters_and_accents($name));
if (!empty($this->name) && !empty($prefs[$this->getPrefName()])) {
$this->loadPref();
} else {
$this->initData();
}
}
示例2: getTabsetName
/**
* @param $params
* @param $tabset_index
* @return array
*/
function getTabsetName($params, $tabset_index)
{
if (!empty($params['name'])) {
$smarty_tabset_name = $params['name'];
// names have to be unique
} else {
$short_name = str_replace(array('tiki-', '.php'), '', basename($_SERVER['SCRIPT_NAME']));
$smarty_tabset_name = '_' . $short_name . $tabset_index;
}
$smarty_tabset_name = TikiLib::remove_non_word_characters_and_accents($smarty_tabset_name);
return $smarty_tabset_name;
}
示例3: ob_start
include 'tiki-setup.php';
$modlib = TikiLib::lib('mod');
$mods = $modlib->get_all_modules();
ob_start();
?>
if ( typeof tiki_module_params == 'undefined' ) { var tiki_module_params = {}; }
<?php
foreach ($mods as $mod) {
$file = 'modules/mod-func-' . $mod . '.php';
if (file_exists($file)) {
include_once $file;
$info_func = "module_{$mod}_info";
if (function_exists($info_func)) {
$info = $info_func();
} else {
$info = false;
}
}
?>
tiki_module_params.<?php
echo TikiLib::remove_non_word_characters_and_accents($mod);
?>
= <?php
echo json_encode($info);
?>
;
<?php
}
$content = ob_get_contents();
file_put_contents($cache, $content);
ob_end_flush();
示例4: smarty_block_tabset
function smarty_block_tabset($params, $content, $smarty, &$repeat)
{
global $prefs, $smarty_tabset_name, $smarty_tabset, $smarty_tabset_i_tab, $cookietab, $headerlib, $tabset_index;
if ($smarty->getTemplateVars('print_page') == 'y' || $prefs['layout_tabs_optional'] === 'n') {
$params['toggle'] = 'n';
}
if ($repeat) {
// opening
if (!is_array($smarty_tabset)) {
$smarty_tabset = array();
}
$tabset_index = count($smarty_tabset) + 1;
if (isset($params['name']) and !empty($params['name'])) {
$smarty_tabset_name = $params['name'];
// names have to be unique
} else {
$short_name = str_replace(array('tiki-', '.php'), '', basename($_SERVER['SCRIPT_NAME']));
$smarty_tabset_name = 't_' . $short_name . $tabset_index;
}
$smarty_tabset_name = TikiLib::remove_non_word_characters_and_accents($smarty_tabset_name);
$smarty_tabset[$tabset_index] = array('name' => $smarty_tabset_name, 'tabs' => array());
if (!isset($smarty_tabset_i_tab)) {
$smarty_tabset_i_tab = 1;
}
if (!isset($cookietab) || $tabset_index > 1) {
$cookietab = getCookie($smarty_tabset_name, 'tabs', 1);
}
// work out cookie value if there
if (isset($_REQUEST['cookietab']) && $tabset_index === 1) {
// overrides cookie if added to request as in tiki-admin.php?page=look&cookietab=6
$cookietab = empty($_REQUEST['cookietab']) ? 1 : $_REQUEST['cookietab'];
setCookieSection($smarty_tabset_name, $cookietab, 'tabs');
// too late to set it here as output has started
}
// If the tabset specifies the tab, override any kind of memory but only if not doing "no tabs" mode
if (isset($params['cookietab']) && $cookietab !== 'n') {
$cookietab = $params['cookietab'];
}
$smarty_tabset_i_tab = 1;
return;
} else {
$content = trim($content);
if (empty($content)) {
return '';
}
$ret = '';
$notabs = '';
//closing
if ($prefs['feature_tabs'] == 'y') {
if (empty($params['toggle']) || $params['toggle'] != 'n') {
$smarty->loadPlugin('smarty_function_button');
if ($cookietab == 'n') {
$button_params['_text'] = tra('Tab View');
} else {
$button_params['_text'] = tra('No Tabs');
}
$button_params['_auto_args'] = '*';
$button_params['_onclick'] = "setCookie('{$smarty_tabset_name}','" . ($cookietab == 'n' ? 1 : 'n') . "', 'tabs') ;";
$notabs = smarty_function_button($button_params, $smarty);
$notabs = "<div class='tabstoggle floatright'>{$notabs}</div>";
$content_class = '';
} else {
$content_class = ' full_width';
// no no-tabs button
}
} else {
return $content;
}
if ($cookietab == 'n') {
return $ret . $notabs . $content;
}
$ret .= '<div class="clearfix tabs" data-name="' . $smarty_tabset_name . '">' . $notabs;
$count = 1;
if ($prefs['mobile_feature'] === 'y' && $prefs['mobile_mode'] === 'y') {
$ret .= '<div class="container' . $content_class . '" data-role="navbar"><ul>';
foreach ($smarty_tabset[$tabset_index]['tabs'] as $value) {
$ret .= '<li>' . '<a href="#" class="tabmark tab' . $count . ' ' . ($count == $cookietab ? 'ui-btn-active' : '') . '"' . ' onclick="tikitabs(' . $count . ',this); return false;">' . $value . '</a></li>';
++$count;
}
$ret .= '</ul></div>';
} else {
// notmal non-mobile rendering
$ret .= '<div class="container' . $content_class . '">';
foreach ($smarty_tabset[$tabset_index]['tabs'] as $value) {
$ret .= '<span class="tabmark tab' . $count . ' ' . ($count == $cookietab ? 'tabactive' : '') . '">' . '<a href="#content' . $count . '"' . ' onclick="tikitabs(' . $count . ',this); return false;">' . $value . '</a></span>';
++$count;
}
$ret .= '</div>';
}
$ret .= "</div>{$content}";
// add some jq to initialize the tab, needed when page is cached
if ($tabset_index === 1) {
// override cookie with query cookietab
$headerlib->add_jq_onready('
var ctab = location.search.match(/cookietab=(\\d+)/);
if (ctab) {
setCookie("' . $smarty_tabset_name . '", ctab[1],"tabs");
}');
}
if ($cookietab != getCookie($smarty_tabset_name, 'tabs', 1)) {
//.........这里部分代码省略.........
示例5: saveTool
public static function saveTool($name, $label, $icon = 'img/icons/shading.png', $token = '', $syntax = '', $type = 'Inline', $plugin = '')
{
global $tikilib;
$name = strtolower(TikiLib::remove_non_word_characters_and_accents($name));
$standard_names = Toolbar::getList(false);
$custom_list = Toolbar::getCustomList();
if (in_array($name, $standard_names)) {
// don't allow custom tools with the same name as standard ones
$c = 1;
while (in_array($name . '_' . $c, $custom_list)) {
$c++;
}
$name = $name . '_' . $c;
}
$prefName = "toolbar_tool_{$name}";
$data = array('name' => $name, 'label' => $label, 'icon' => $icon, 'token' => $token, 'syntax' => $syntax, 'type' => $type, 'plugin' => $plugin);
$tikilib->set_preference($prefName, serialize($data));
if (!in_array($name, $custom_list)) {
$custom_list[] = $name;
$tikilib->set_preference('toolbar_custom_list', serialize($custom_list));
}
}
示例6: isset
$filter = TikiFilter::get('alpha');
$_REQUEST['language'] = isset($_GET['language']) ? $_GET['language'] = $filter->filter($_GET['language']) : '';
$cache = "temp/cache/module_ALL_".$_REQUEST['language'];
if ( file_exists($cache) ) {
readfile($cache);
exit;
}
include 'tiki-setup.php';
$modlib = TikiLib::lib('mod');
$mods = $modlib->get_all_modules();
ob_start();
?>if ( typeof tiki_module_params == 'undefined' ) { var tiki_module_params = {}; }
<?php
foreach ( $mods as $mod ):
include_once('modules/mod-func-' . $mod . '.php');
$info_func = "module_{$mod}_info";
if (function_exists($info_func)) {
$info = $info_func();
} else {
$info = false;
}
?>
tiki_module_params.<?php echo TikiLib::remove_non_word_characters_and_accents($mod) ?> = <?php echo json_encode($info) ?>;
<?php endforeach;
$content = ob_get_contents();
file_put_contents($cache, $content);
ob_end_flush();