Skip to content

Commit

Permalink
template overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
brianteeman committed Apr 2, 2017
1 parent c4d555f commit 9167bd9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ function clearCoords()
. '&id=' . $input->getInt('id') . '&file=' . $this->file . '&' . $token;
?>
<a href="<?php echo JRoute::_($overrideLinkUrl); ?>">
<span class="icon-copy"></span>&nbsp;<?php echo $module->name; ?>
<span class="icon-copy" aria-hidden="true"></span>&nbsp;<?php echo $module->name; ?>
</a>
</li>
<?php endforeach; ?>
Expand All @@ -368,7 +368,7 @@ function clearCoords()
<?php foreach ($this->overridesList['components'] as $key => $value) : ?>
<li class="component-folder">
<a href="#" class="component-folder-url">
<span class="icon-folder"></span>&nbsp;<?php echo $key; ?>
<span class="icon-folder" aria-hidden="true"></span>&nbsp;<?php echo $key; ?>
</a>
<ul class="nav nav-list">
<?php foreach ($value as $view) : ?>
Expand All @@ -378,7 +378,7 @@ function clearCoords()
. '&id=' . $input->getInt('id') . '&file=' . $this->file . '&' . $token;
?>
<a class="component-file-url" href="<?php echo JRoute::_($overrideLinkUrl); ?>">
<span class="icon-copy"></span>&nbsp;<?php echo $view->name; ?>
<span class="icon-copy" aria-hidden="true"></span>&nbsp;<?php echo $view->name; ?>
</a>
</li>
<?php endforeach; ?>
Expand All @@ -398,7 +398,7 @@ function clearCoords()
. '&id=' . $input->getInt('id') . '&file=' . $this->file . '&' . $token;
?>
<a href="<?php echo JRoute::_($overrideLinkUrl); ?>">
<span class="icon-copy"></span>&nbsp;<?php echo $layout->name; ?>
<span class="icon-copy" aria-hidden="true"></span>&nbsp;<?php echo $layout->name; ?>
</a>
</li>
<?php endforeach; ?>
Expand Down

0 comments on commit 9167bd9

Please sign in to comment.