Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
set_https_domains example
public
function
set_stupidly_fast
(
$set
= false
)
{
if
(
$set
)
{
$this
->
enable_order_by_date
(
false
)
;
$this
->
remove_div
(
false
)
;
$this
->
strip_comments
(
false
)
;
$this
->
strip_htmltags
(
false
)
;
$this
->
strip_attributes
(
false
)
;
$this
->
add_attributes
(
false
)
;
$this
->
set_image_handler
(
false
)
;
$this
->
set_https_domains
(
array
(
)
)
;
}
}
/** * Set maximum number of feeds to check with autodiscovery * * @param int $max Maximum number of feeds to check */
public
function
set_max_checked_feeds
(
$max
= 10
)
{
$this
->max_checked_feeds =
(int)
$max
;
}