This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: Houzez Property Scraper | |
| * Plugin URI: https://www.4property.com/ | |
| * Description: A Houzez scraper plugin for WordPress. | |
| * Version: 1.0.0 | |
| * Author: Ciprian Popescu | |
| * Author URI: https://www.4property.com/ | |
| * License: GNU General Public License v3 or later | |
| * License URI: https://www.gnu.org/licenses/gpl-3.0.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: Whiskey WhatsApp | |
| * Plugin URI: https://getbutterfly.com/ | |
| * Description: n/a | |
| * Version: 1.0.0 | |
| * Author: getButterfly | |
| * Author URI: http://getbutterfly.com/ | |
| * Update URI: http://getbutterfly.com | |
| * Requires at least: 6.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: IO | |
| * Plugin URI: https://www.4property.com/ | |
| * Description: Programmatic login | |
| * Author: 4Property | |
| * Author URI: https://www.4property.com/ | |
| * Version: 0.0.1 | |
| * | |
| * IO |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: Supernova - GTM Multisite | |
| * Plugin URI: https://www.4property.com/ | |
| * Description: n/a | |
| * Version: 0.0.1 | |
| * Author: 4Property | |
| * Author URI: https://www.4property.com/ | |
| * License: GNU General Public License v3 or later | |
| * License URI: https://www.gnu.org/licenses/gpl-3.0.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: Supernova - YouTube Feeds | |
| * Plugin URI: https://www.4property.com/ | |
| * Description: YouTube Feed | |
| * Version: 1.0.0 | |
| * Author: 4Property | |
| * Author URI: https://www.4property.com/ | |
| * License: GNU General Public License v3 or later | |
| * License URI: https://www.gnu.org/licenses/gpl-3.0.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: WPPD Importer | |
| * Plugin URI: https://www.4property.com/ | |
| * Description: Importer. | |
| * Version: 0.0.1 | |
| * Author: 4Property | |
| * Author URI: https://www.4property.com/ | |
| * License: GNU General Public License v3 or later | |
| * License URI: https://www.gnu.org/licenses/gpl-3.0.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: WP Property Drive - Houzez Exporter | |
| * Plugin URI: https://www.4property.com/ | |
| * Description: - | |
| * Version: 1.0.0 | |
| * Author: 4Property | |
| * Author URI: https://www.4property.com/ | |
| * License: GNU General Public License v3 or later | |
| * License URI: https://www.gnu.org/licenses/gpl-3.0.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function my_plugin_enqueue_scripts() { | |
| wp_enqueue_script('my-plugin', plugins_url('/assets/js/init.js', __FILE__), [], '', true); | |
| wp_localize_script('my-plugin', 'myAjaxVar', [ | |
| 'ajaxurl' => admin_url('admin-ajax.php'), | |
| 'url' => 'https://ckp.ie' | |
| ]); | |
| } | |
| add_action('wp_enqueue_scripts', 'my_plugin_enqueue_scripts'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title>Find String</title> | |
| </head> | |
| <body> | |
| <?php | |
| ini_set('max_execution_time', '0'); | |
| ini_set('set_time_limit', '0'); | |
| find_files('.'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php if(!isset($_POST['send'])) { ?> | |
| <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post"> | |
| <noscript><input type="hidden" name="havejs" id="havejs"></noscript> | |
| <input type="hidden" name="send" value="send"> | |
| <!-- spam bait - if the bcc field contains anything, this email is rejected --> | |
| <!--<input type="text" name="bcc" />--> | |
| <!--<label for="bcc">Bcc</label>--> | |
| <p><input type="text" name="name" required><label for="name">Name</label></p> | |
| <p><input type="text" name="phone" required><label for="phone">Phone</label></p> |
NewerOlder