• File: install.php
  • Full Path: /home/builxejc/public_html/wp-content/plugins/formlayer/main/install.php
  • Date Modified: 05/26/2026 11:08 AM
  • File size: 398 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace FormLayer;

if(!defined('ABSPATH')){
	die('HACKING ATTEMPT!');
}

class Install{

	static function activate(){
		update_option('formlayer_version', FORMLAYER_VERSION);
	}

	static function deactivate(){
		delete_option('formlayer_version');
		delete_option('formlayer_settings');
		delete_option('formlayer_id_counter');
	}

	static function uninstall(){
		// delete options
	}
	
}