Example #1
0
 /**
  * Constructor
  *
  * @param $qsf - Quicksilver Forums module
  **/
 function htmlwidgets(&$qsf)
 {
     parent::htmltools($qsf);
     // Need the time for timezone stuff
     $this->time =& $qsf->time;
     $qsf->db->htmlwidgets();
 }
Example #2
0
 /**
  * Constructor
  *
  * @param $qsf - Quicksilver Forums module
  **/
 function templater(&$qsf)
 {
     parent::htmltools($qsf);
     // Need the template selection
     $this->skin = $qsf->skin;
     $this->debug_mode = $qsf->debug_mode;
     // Needed for modlets
     $this->qsf =& $qsf;
 }
Example #3
0
 /**
  * Constructor
  *
  * @param object $qsf Main action object
  * @param bool $createChild Weather to create an instance of itself or not.
  **/
 function bbcode(&$qsf, $createChild = true)
 {
     parent::htmltools($qsf);
     $this->user_view_emoticons = $qsf->user['user_view_emoticons'];
     if ($createChild) {
         $this->clone =& new bbcode($qsf, false);
     }
 }
Example #4
0
 /**
  * Constructor
  *
  * @param object $qsf Main action object
  **/
 function bbcode(&$qsf)
 {
     parent::htmltools($qsf);
     $this->user_view_emoticons = $qsf->user['user_view_emoticons'];
 }
Example #5
0
 /**
  * Constructor
  *
  * @param object $qsf Main action object
  * @param bool $createChild Weather to create an instance of itself or not.
  **/
 function bbcode(&$qsf, $createChild = true)
 {
     parent::htmltools($qsf);
     $this->user_view_emoticons = $qsf->user['user_view_emoticons'];
     $__event = 'bbcode_init';
     eval(PLUGIN_CODE_QSF);
     //		var_dump( $pwned ); // $pwned is set in the plugin code...!
     if ($createChild) {
         $this->clone = new bbcode($qsf, false);
     }
 }