本文整理汇总了PHP中navigation_node::add_class方法的典型用法代码示例。如果您正苦于以下问题:PHP navigation_node::add_class方法的具体用法?PHP navigation_node::add_class怎么用?PHP navigation_node::add_class使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类navigation_node
的用法示例。
在下文中一共展示了navigation_node::add_class方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: test_node_remove_class
public function test_node_remove_class()
{
$this->setup_node();
$this->node->add_class('testclass');
$this->assertTrue($this->node->remove_class('testclass'));
$this->assertNotContains('testclass', $this->node->classes);
}
示例2: convert_child
/**
* Recusively converts a child node and its children to XML for output
*
* @param navigation_node $child The child to convert
* @param int $depth Pointlessly used to track the depth of the XML structure
* @return string JSON
*/
protected function convert_child($child, $depth = 1)
{
if (!$child->display) {
return '';
}
$attributes = array();
$attributes['id'] = $child->id;
$attributes['name'] = $child->text;
$attributes['type'] = $child->type;
$attributes['key'] = $child->key;
$attributes['class'] = $child->get_css_type();
if ($child->icon instanceof pix_icon) {
$attributes['icon'] = array('component' => $child->icon->component, 'pix' => $child->icon->pix);
foreach ($child->icon->attributes as $key => $value) {
if ($key == 'class') {
$attributes['icon']['classes'] = explode(' ', $value);
} else {
if (!array_key_exists($key, $attributes['icon'])) {
$attributes['icon'][$key] = $value;
}
}
}
} else {
if (!empty($child->icon)) {
$attributes['icon'] = (string) $child->icon;
}
}
if ($child->forcetitle || $child->title !== $child->text) {
$attributes['title'] = htmlentities($child->title, ENT_QUOTES, 'UTF-8');
}
if (array_key_exists($child->key . ':' . $child->type, $this->expandable)) {
$attributes['expandable'] = $child->key;
$child->add_class($this->expandable[$child->key . ':' . $child->type]['id']);
}
if (count($child->classes) > 0) {
$attributes['class'] .= ' ' . join(' ', $child->classes);
}
if (is_string($child->action)) {
$attributes['link'] = $child->action;
} else {
if ($child->action instanceof moodle_url) {
$attributes['link'] = $child->action->out();
} else {
if ($child->action instanceof action_link) {
$attributes['link'] = $child->action->url->out();
}
}
}
$attributes['hidden'] = $child->hidden;
$attributes['haschildren'] = $child->children->count() > 0 || $child->type == navigation_node::TYPE_CATEGORY;
if ($child->children->count() > 0) {
$attributes['children'] = array();
foreach ($child->children as $subchild) {
$attributes['children'][] = $this->convert_child($subchild, $depth + 1);
}
}
if ($depth > 1) {
return $attributes;
} else {
return json_encode($attributes);
}
}
示例3: test_remove_class
public function test_remove_class()
{
$this->node->add_class('testclass');
$this->assertTrue($this->node->remove_class('testclass'));
$this->assertFalse(in_array('testclass', $this->node->classes));
}