espresto/reclaim-social-media

Link to mod in reclaim settings page

Closed this issue · 1 comments

Would you think it is use full to add links to anchors for each mod in reclaim.php
line 248, something like (I don't know if this is the correct mod key).

<?php
        foreach($this->mods_loaded as $mod) {
           echo '<a href="#"'.$mod['name'].'"'>'.$mod['name'].'"</a> ";
        }
?>

we have that functionality in the dashboard-widget.
if you add this on line 249, you have it:

        <?php self::status_widget(); ?>

that takes a lot of space. your snippet would work like this:

<?php
        foreach($this->mods_loaded as $mod) {
           echo '<a href="#"'.$mod['name'].'">'.$mod['name'].'</a> | ';
        }
?>

the long term solution would be creating tabs or a settings pages for each mod.