This is the documentation page for Module:WikiProjectBanner/Banner

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.

HooksEdit

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.

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

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

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