Skip to content

Commit

Permalink
Specify what "Direct" and "Indirect" mean
Browse files Browse the repository at this point in the history
Addresses issue #9
  • Loading branch information
BrandonXLF committed Feb 16, 2022
1 parent 4e945a2 commit f25d4f9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions includes/LinkCount.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,12 @@ public function getHtml() {
$out->appendContent(
(new OOUI\Tag('div'))->addClasses(['header'])->appendContent('Type'),
(new OOUI\Tag('div'))->addClasses(['header'])->appendContent('All'),
(new OOUI\Tag('div'))->addClasses(['header'])->appendContent('Direct'),
(new OOUI\Tag('div'))->addClasses(['header'])->appendContent('Indirect')
(new OOUI\Tag('abbr'))->addClasses(['header'])->setAttributes([
'title' => 'Number of pages that link to page using the actual page name'
])->appendContent('Direct'),
(new OOUI\Tag('abbr'))->addClasses(['header'])->setAttributes([
'title' => 'Number of pages that link to the page through a redirect'
])->appendContent('Indirect')
);

$encodedPage = rawurlencode($this->title->getFullText());
Expand Down

0 comments on commit f25d4f9

Please sign in to comment.