本文整理汇总了PHP中c::remove方法的典型用法代码示例。如果您正苦于以下问题:PHP c::remove方法的具体用法?PHP c::remove怎么用?PHP c::remove使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类c
的用法示例。
在下文中一共展示了c::remove方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: isset
<?php
$data = isset($content) ? $content : $page;
if (isset($mypageid)) {
$data = $site->find($mypageid);
}
$containers = isset($use_containers) ? $use_containers : $data->children()->visible();
$container_count = 0;
foreach ($containers as $container) {
$next = $container->nextVisible();
$container_count++;
// Wo kommt der Content her?
if (preg_match("=^_shared=", $container->uri())) {
c::set("lang_layouts", "de");
} else {
c::remove("lang_layouts");
}
// Layout Angaben
$def_lang = c::get("lang_layouts") ? c::get("lang_layouts") : $site->defaultLanguage()->code();
$layout_data = yaml($data->content($def_lang)->layout_switcher());
$headline_position = $container->content($def_lang)->headline_position();
if (isset($show_ruler)) {
$trennlinie = "show";
$next = $containers->count() == $container_count ? false : true;
} else {
$trennlinie = $data->content($def_lang)->trennlinie();
}
$classes = get_additional_classes($container, $site);
$behavior_classes = $classes["behavior_classes"];
$hide_in_lang = preg_match("=(1|true|TRUE)=", $container->hide_in_lang()) ? true : false;
if ($hide_in_lang) {