Changes

MyWikiBiz, Author Your Legacy — Monday June 03, 2024
Jump to navigationJump to search
Pywikibot 6.4.0
This is the Banner class of [[Module:WikiProjectBanner]]. It does all of the heavy lifting; it renders the banner, calls the row objects, and calls the hooks.

== Hooks ==

This is the normal HTML structure. Everything that is not a tag or an HTML comment is an HTML object that you can add to.

<syntaxhighlight lang="html5">
preWrapper
<table>
<tr>
<td>headerName</td>
<th>headerRating</th>
</tr>
<tr>
<td>
<table>
preBlurb
<tr>
<td>blurbImageLeft</td>
<td>blurbText</td>
<td>blurbImageRight</td>
</tr>
postBlurb
<!-- The quality row goes here -->
postQuality
<!-- The importance row goes here -->
postImportance
<!-- Task forces go here -->
postTaskForces
<!-- Requests go here. -->
postRequests
<!-- Notices go here. -->
postNotices
postContent
</table>
</td>
</tr>
</table>
postWrapper
</syntaxhighlight>

This is the HTML structure if the requests and notices are collapsed.

<syntaxhighlight lang="html5">
preWrapper
<table>
<tr>
<td>headerName</td>
<th>headerRating</th>
</tr>
<tr>
<td>
<table>
preBlurb
<tr>
<td>blurbImageLeft</td>
<td>blurbText</td>
<td>blurbImageRight</td>
</tr>
postBlurb
<!-- The quality row goes here -->
postQuality
<!-- The importance row goes here -->
postImportance
<!-- Task forces go here -->
postTaskForces
<tr>
<td>
<table>
<tr>
<td></td>
</tr>
preCollapsedContent
<!-- Requests go here. -->
postRequests
<!-- Notices go here. -->
postNotices
</table>
</td>
</tr>
postContent
</table>
</td>
</tr>
</table>
postWrapper
</syntaxhighlight>

Navigation menu