From 6feda2220e4c4ac2b12ca978e47b0f9cebab53ae Mon Sep 17 00:00:00 2001 From: Eugene Molotov Date: Mon, 8 Apr 2019 00:50:58 +0500 Subject: [PATCH] [VkBridge] Add option to hide reposts (#1089) --- bridges/VkBridge.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bridges/VkBridge.php b/bridges/VkBridge.php index d4e84d95..8653e7c9 100644 --- a/bridges/VkBridge.php +++ b/bridges/VkBridge.php @@ -13,6 +13,10 @@ class VkBridge extends BridgeAbstract 'u' => array( 'name' => 'Group or user name', 'required' => true + ), + 'hide_reposts' => array( + 'name' => 'Hide reposts', + 'type' => 'checkbox', ) ) ); @@ -234,6 +238,9 @@ class VkBridge extends BridgeAbstract } if (is_object($post->find('div.copy_quote', 0))) { + if ($this->getInput('hide_reposts') === true) { + continue; + } $copy_quote = $post->find('div.copy_quote', 0); if ($copy_post_header = $copy_quote->find('div.copy_post_header', 0)) { $copy_post_header->outertext = '';