2013-06-12 Sancho Lerena <slerena@artica.es>

* extensions/plugin_registration.php: Added link to file manager
        to upload plugin files using the file manager.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8295 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
slerena 2013-06-12 11:52:20 +00:00
parent c5748ae492
commit ee97ddd3ce
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2013-06-12 Sancho Lerena <slerena@artica.es>
* extensions/plugin_registration.php: Added link to file manager
to upload plugin files using the file manager.
2013-06-12 Mario Pulido <mario.pulido@artica.es> 2013-06-12 Mario Pulido <mario.pulido@artica.es>
* pandoradb.data.postgreSQL.sql, * pandoradb.data.postgreSQL.sql,

View File

@ -39,6 +39,12 @@ function pluginreg_extension_main () {
echo "<td class='datos'><input type='submit' class='sub next' value='".__('Upload')."' />"; echo "<td class='datos'><input type='submit' class='sub next' value='".__('Upload')."' />";
echo "</form></table>"; echo "</form></table>";
echo '<table class="databox" id="table1" width="98%" border="0" cellpadding="4" cellspacing="4">';
echo "<tr><td class='datos'>";
echo __("If you want to register manually the plugin, you can upload it using file manager."). "&nbsp;". "<a href='index.php?sec=gsetup&sec2=godmode/setup/file_manager&directory=attachment/plugin'>". "<b>".__("Use file manager to upload plugin executable file."). "</b></a> ".__("Plugin files will be uploaded to console in '/attachment/plugin' directory.");
echo "</td></tr></table>";
return; return;
} }