Yes, I agree. There isn't much you can do with it the way it is. I don't like doing it this way but there really is no other choice if I want to make it as automatic as possible. They will just have to live with the order I put them in unless they want to edit the plugin, I guess. Since this was mainly for my own site, I set it up to how I use it.
Thanks for verifying what I suspected, though.
--------------- Added [DATE]1326297407[/DATE] at [TIME]1326297407[/TIME] ---------------
Quote:
Originally Posted by Disasterpiece
//e:
Another method would be, if you know there is already text in the template var inserted and you want to put your text at a certain position, you can split the string, place yours and convert it to a string again:
PHP Code:
$lines = explode("\n", $text);
$newlines = array();
$insert_at = 4;
$new_line = 'my new line';
for ($i=0; $i < count($lines); $i++) {
if ($i == $insert_at) {
$newlines[$i] = $new_line;
$i++;
} else {
$newlines[$i] = $lines[$i];
}
}
$text = implode($newlines);
|
But to add this to a mod for users to use wouldn't really work, would it? Since I'm adding the text to the line, I can add it in any order I want to when making the mod. But for the end user to do it, they will have to edit the plugin manually. But you mentioned earlier about adding some hooks to the template. How hard would that be to do? I've never added hooks for a mod before. Or, being it is the footer template, maybe it would be more hassle than it is worth?