/**
  * Constructor
  *
  * @access	public
  * @return	null
  */
 function Code_pack()
 {
     parent::Module_builder('code_pack');
     /** -------------------------------------
     		/**  Module Installed and Up to Date?
     		/** -------------------------------------*/
     if ($this->database_version() == FALSE or $this->version_compare($this->database_version(), '<', CODE_PACK_VERSION)) {
         $this->disabled = TRUE;
         trigger_error(ee()->lang->line('code_pack_module_disabled'), E_USER_NOTICE);
     }
 }