PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.4
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.4
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/models/FrmInstallPlugin.php +0 -12 6.35.4 View file →
@@ -29,32 +29,20 @@
29 29 }
30 30 return $url;
31 31 }
32 32
33 - /**
34 - * @return bool
35 - */
36 33 public function is_installed() {
37 34 return is_dir( WP_PLUGIN_DIR . '/' . $this->plugin_slug );
38 35 }
39 36
40 - /**
41 - * @return bool
42 - */
43 37 public function is_active() {
44 38 return is_plugin_active( $this->plugin_file );
45 39 }
46 40
47 - /**
48 - * @return string
49 - */
50 41 protected function install_url() {
51 42 return wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=' . $this->plugin_slug ), 'install-plugin_' . $this->plugin_slug );
52 43 }
53 44
54 - /**
55 - * @return string
56 - */
57 45 protected function activate_url() {
58 46 return wp_nonce_url( self_admin_url( 'plugins.php?action=activate&plugin=' . $this->plugin_file ), 'activate-plugin_' . $this->plugin_file );
59 47 }
60 48 }