Lines Matching refs:item

910             ' itemprop="item"  title="' . $conf['start'] . '"'
937 $link = str_replace('<a', '<a itemprop="item" ', $link);
966 $link = str_replace('<a ', '<a itemprop="item" ', $link);
1826 foreach ($admin_task->find('a') as $item) {
1827 $item->class .= ' list-group-item';
1828 $item->style = 'max-height: 50px'; # TODO remove
1831 foreach ($admin_task->find('.icon') as $item) {
1832 if ($item->innertext) {
1836 $item->innertext = iconify('mdi:puzzle', ['class' => 'text-success']);
1846 foreach ($admin_plugins->find('li') as $idx => $item) {
1848 $item->outertext = '</ul><ul class="' . $admin_plugins->class . '">' . $item->outertext;
2285 foreach ($toc as $item) {
2287 'link' => (isset($item['link']) ? $item['link'] : '#' . $item['hid']),
2288 'title' => $item['title'],
2289 'level' => $item['level'],
2329 foreach ($data['object']->getItems() as $item) {
2330 $attr = buildAttributes($item->getLinkAttributes());
2333 if ($ACT == $item->getType() || ($ACT == 'revisions' && $item->getType() == 'revs') || ($ACT == 'diff' && $item->getType() == 'revs')) {
2337 if ($item->getType() == 'shareon') {
2343 $html .= \inlineSVG($item->getSvg());
2344 $html .= '<span>' . hsc($item->getLabel()) . '</span>';
2347 if ($item->getType() == 'shareon') {
2348 $html .= $item->getDropDownMenu();
2353 $tools_menus[$tool]['menu'][$item->getType()]['object'] = $item;
2354 $tools_menus[$tool]['menu'][$item->getType()]['html'] = $html;
2371 public function getToolMenuItem($tool, $item)
2373 if (isset($this->toolsMenu[$tool]) && isset($this->toolsMenu[$tool]['menu'][$item])) {
2374 return $this->toolsMenu[$tool]['menu'][$item]['object'];
2379 public function getToolMenuItemLink($tool, $item)
2381 if (isset($this->toolsMenu[$tool]) && isset($this->toolsMenu[$tool]['menu'][$item])) {
2382 return $this->toolsMenu[$tool]['menu'][$item]['html'];