Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate MooTools based helpers #12268

Merged
merged 2 commits into from
Oct 3, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion libraries/cms/html/sliders.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
/**
* Utility class for Sliders elements
*
* @since 1.6
* @since 1.6
* @deprecated __DEPLOY_VERSION__ These helpers are dependent on the deprecated MooTools support
*/
abstract class JHtmlSliders
{
Expand All @@ -25,6 +26,7 @@ abstract class JHtmlSliders
* @return string
*
* @since 1.6
* @deprecated __DEPLOY_VERSION__ These helpers are dependent on the deprecated MooTools support
*/
public static function start($group = 'sliders', $params = array())
{
Expand All @@ -39,6 +41,7 @@ public static function start($group = 'sliders', $params = array())
* @return string hTML to close the pane
*
* @since 1.6
* @deprecated __DEPLOY_VERSION__ These helpers are dependent on the deprecated MooTools support
*/
public static function end()
{
Expand All @@ -54,6 +57,7 @@ public static function end()
* @return string HTML to start a panel
*
* @since 1.6
* @deprecated __DEPLOY_VERSION__ These helpers are dependent on the deprecated MooTools support
*/
public static function panel($text, $id)
{
Expand All @@ -70,6 +74,7 @@ public static function panel($text, $id)
* @return void
*
* @since 1.6
* @deprecated __DEPLOY_VERSION__ These helpers are dependent on the deprecated MooTools support
*/
protected static function loadBehavior($group, $params = array())
{
Expand Down
7 changes: 6 additions & 1 deletion libraries/cms/html/tabs.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
/**
* Utility class for Tabs elements.
*
* @since 1.6
* @since 1.6
* @deprecated __DEPLOY_VERSION__ These helpers are dependent on the deprecated MooTools support
*/
abstract class JHtmlTabs
{
Expand All @@ -25,6 +26,7 @@ abstract class JHtmlTabs
* @return string
*
* @since 1.6
* @deprecated __DEPLOY_VERSION__ These helpers are dependent on the deprecated MooTools support
*/
public static function start($group = 'tabs', $params = array())
{
Expand All @@ -39,6 +41,7 @@ public static function start($group = 'tabs', $params = array())
* @return string HTML to close the pane
*
* @since 1.6
* @deprecated __DEPLOY_VERSION__ These helpers are dependent on the deprecated MooTools support
*/
public static function end()
{
Expand All @@ -54,6 +57,7 @@ public static function end()
* @return string HTML to start a new panel
*
* @since 1.6
* @deprecated __DEPLOY_VERSION__ These helpers are dependent on the deprecated MooTools support
*/
public static function panel($text, $id)
{
Expand All @@ -69,6 +73,7 @@ public static function panel($text, $id)
* @return void
*
* @since 1.6
* @deprecated __DEPLOY_VERSION__ These helpers are dependent on the deprecated MooTools support
*/
protected static function loadBehavior($group, $params = array())
{
Expand Down