27 lines
610 B
Ruby
27 lines
610 B
Ruby
# encoding: UTF-8
|
|
|
|
class WpTarget < WebSite
|
|
module WpMustUsePlugins
|
|
|
|
# Checks to see if the must use plugin folder exists
|
|
#
|
|
# @return [ Boolean ]
|
|
def has_must_use_plugins?
|
|
response = Browser.get(must_use_url)
|
|
|
|
if response && WpTarget.valid_response_codes.include?(response.code)
|
|
hash = WebSite.page_hash(response)
|
|
return true if hash != error_404_hash && hash != homepage_hash
|
|
end
|
|
|
|
false
|
|
end
|
|
|
|
# @return [ String ] The must use plugins directory URL
|
|
def must_use_url
|
|
@uri.merge("#{wp_content_dir}/mu-plugins/").to_s
|
|
end
|
|
|
|
end
|
|
end
|