Add-on Class/Image Addon

The Dark Wizard

Well-known member
How much to do the following? Only looking for quotes right now.

The ability to Add Class Names to forum nodes through the Admin Control Panel (Type in the class names, the ability to add multiple class names to the same node) Or to use previously created class names.
Code:
<li class="node forum level_2 node_6368 FANTASY SCIFI AMAZING"></li>

The Ability to upload an image to use as a forum node icon for a specific node icon through the Admin Control Panel. Or to use previously uploaded images.
Code:
<li class="node forum level_2 node_6368">
<span class="nodeIcon" style="background: url(img/lolzerolf.jpg)"></span>
</li>

The ability to upload an image to use as a forum node background Admin Control Panel.
Code:
<li class="node forum level_2 node_6368">
<div class="nodeInfo forumNodeInfo primaryContent unread" style="background: url(img/lolzerolf.jpg)"></span>
</li>
 
How much to do the following? Only looking for quotes right now.

The ability to Add Class Names to forum nodes through the Admin Control Panel (Type in the class names, the ability to add multiple class names to the same node) Or to use previously created class names.
Code:
<li class="node forum level_2 node_6368 FANTASY SCIFI AMAZING"></li>

The Ability to upload an image to use as a forum node icon for a specific node icon through the Admin Control Panel. Or to use previously uploaded images.
Code:
<li class="node forum level_2 node_6368">
<span class="nodeIcon" style="background: url(img/lolzerolf.jpg)"></span>
</li>

The ability to upload an image to use as a forum node background Admin Control Panel.
Code:
<li class="node forum level_2 node_6368">
<div class="nodeInfo forumNodeInfo primaryContent unread" style="background: url(img/lolzerolf.jpg)"></span>
</li>

You could do this with custom user fields...only let the admin use the field. Not the best way, but its a way.
 
Code:
<li class="node forum level_2 node_6368">


<div class="nodeInfo forumNodeInfo primaryContent unread" style="background: url({$user.customFields.thedarkwizard)"></span>


</li>
 
Top Bottom