/plugins/guild_rep/install.def.php

http://wowroster.googlecode.com/ · PHP · 74 lines · 39 code · 12 blank · 23 comment · 0 complexity · 3b4b71613796ec2fafa3ca7f47049849 MD5 · raw file

  1. <?php
  2. class guild_repInstall
  3. {
  4. var $members_list_select;
  5. var $members_list_table;
  6. var $members_list_where = array();
  7. var $members_list_fields = array();
  8. /*
  9. * These Vars are used with the new Plugin installer
  10. * @var name - unique name for the plugin
  11. * @var parent - the intended addon to use this plugin
  12. *
  13. */
  14. var $active = true;
  15. var $name = 'guild_rep';
  16. var $filename = 'memberslist-guild-guild_rep.php';
  17. var $parent = 'memberslist';
  18. var $scope = 'guild';
  19. var $icon = 'inv_misc_film_01';
  20. var $version = '1.0';
  21. var $oldversion = '';
  22. var $wrnet_id = '';
  23. var $fullname = 'MembersList Guild Rep';
  24. var $description = 'displays guildrep on members list.';
  25. var $credits = array(
  26. array( "name"=> "Ulminia <Ulminia@gmail.com>",
  27. "info"=> "Guild Rep (Alpha Release)"),
  28. );
  29. /**
  30. * Install Function
  31. *
  32. * @return bool
  33. */
  34. function install()
  35. {
  36. global $installer;
  37. return true;
  38. }
  39. /**
  40. * Upgrade Function
  41. *
  42. * @param string $oldversion
  43. * @return bool
  44. */
  45. function upgrade($oldversion)
  46. {
  47. global $installer,$addon,$roster;
  48. // Nothing to upgrade from yet
  49. return true;
  50. }
  51. /**
  52. * Un-Install Function
  53. *
  54. * @return bool
  55. */
  56. function uninstall()
  57. {
  58. global $installer, $addon;
  59. return true;
  60. }
  61. }
  62. ?>