Skip to content

Commit 0e6c6da

Browse files
committed
Generate stubs for ACF PRO 6.1.7
1 parent 795daec commit 0e6c6da

File tree

1 file changed

+61
-4
lines changed

1 file changed

+61
-4
lines changed

acf-pro-stubs.php

Lines changed: 61 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class ACF
1616
*
1717
* @var string
1818
*/
19-
public $version = '6.1.6';
19+
public $version = '6.1.7';
2020
/**
2121
* The plugin settings array.
2222
*
@@ -1577,6 +1577,14 @@ public function admin_l10n($l10n)
15771577
public function admin_footer()
15781578
{
15791579
}
1580+
/**
1581+
* Renders HTML for the ACF PRO features upgrade notice.
1582+
*
1583+
* @return void
1584+
*/
1585+
public function include_pro_features()
1586+
{
1587+
}
15801588
/**
15811589
* Screen settings html output
15821590
*
@@ -1716,6 +1724,14 @@ class ACF_Admin_Field_Groups extends \ACF_Admin_Internal_Post_Type_List
17161724
public function __construct()
17171725
{
17181726
}
1727+
/**
1728+
* Renders HTML for the ACF PRO features upgrade notice.
1729+
*
1730+
* @return void
1731+
*/
1732+
public function include_pro_features()
1733+
{
1734+
}
17191735
/**
17201736
* Add any menu items required for field groups.
17211737
*
@@ -2046,6 +2062,25 @@ class ACF_Admin_Post_Types extends \ACF_Admin_Internal_Post_Type_List
20462062
* @var string
20472063
*/
20482064
public $store = 'post-types';
2065+
/**
2066+
* Constructor.
2067+
*
2068+
* @date 5/03/2014
2069+
* @since 6.2
2070+
*
2071+
* @return void
2072+
*/
2073+
public function __construct()
2074+
{
2075+
}
2076+
/**
2077+
* Renders HTML for the ACF PRO features upgrade notice.
2078+
*
2079+
* @return void
2080+
*/
2081+
public function include_pro_features()
2082+
{
2083+
}
20492084
/**
20502085
* Current screen actions for the post types list admin page.
20512086
*
@@ -2171,6 +2206,25 @@ class ACF_Admin_Taxonomies extends \ACF_Admin_Internal_Post_Type_List
21712206
* @var string
21722207
*/
21732208
public $store = 'taxonomies';
2209+
/**
2210+
* Constructor.
2211+
*
2212+
* @date 5/03/2014
2213+
* @since 6.2
2214+
*
2215+
* @return void
2216+
*/
2217+
public function __construct()
2218+
{
2219+
}
2220+
/**
2221+
* Renders HTML for the ACF PRO features upgrade notice.
2222+
*
2223+
* @return void
2224+
*/
2225+
public function include_pro_features()
2226+
{
2227+
}
21742228
/**
21752229
* Current screen actions for the taxonomies list admin page.
21762230
*
@@ -16463,12 +16517,15 @@ function acf_get_current_url()
1646316517
*
1646416518
* @since 6.0.0
1646516519
*
16466-
* @param string $url The URL to be tagged.
16520+
* @param string $url The URL to be tagged.
1646716521
* @param string $campaign The campaign tag.
16468-
* @param string $content The UTM content tag.
16522+
* @param string $content The UTM content tag.
16523+
* @param bool $anchor An optional anchor ID.
16524+
* @param string $source An optional UTM source tag.
16525+
* @param string $medium An optional UTM medium tag.
1646916526
* @return string
1647016527
*/
16471-
function acf_add_url_utm_tags($url, $campaign, $content, $anchor = \false)
16528+
function acf_add_url_utm_tags($url, $campaign, $content, $anchor = \false, $source = '', $medium = '')
1647216529
{
1647316530
}
1647416531
/**

0 commit comments

Comments
 (0)