Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
about.inc
1 <?php
18 global $ROOT_PATH;
19 include_once($ROOT_PATH.'wysiwyg_plugin.inc');
20 
32 class about extends wysiwyg_plugin
33 {
34 
41  function about()
42  {
43  $this->_add_button('about','about','About this editor','true','0');
44 
45  }//end constructor
46 
47 
55  {
56  ?>
57  case "about":
58  this._popupDialog("about", "<?php echo $this->get_popup_href('about.html')?>", 380, 185, true, null);
59  break;
60  <?php
61 
62  }//end print_plugin_button_click()
63 
64 }//end class
65 
66 ?>