Skip to content
This repository was archived by the owner on Dec 4, 2019. It is now read-only.

Commit cd5ee30

Browse files
committed
Redux dev
1 parent 1a2a8a8 commit cd5ee30

File tree

11 files changed

+1307
-0
lines changed

11 files changed

+1307
-0
lines changed

plugins/redux-dev/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## Welcome to the Redux 4.0 Private Beta
2+
3+
PLEASE do not post code anywhere and post any and all issues in THIS issue tracker. By doing this we can quickly resolve any concerns and get Redux 4.0 out!
4+
5+
If you want to interact with us directly, you can join our slack on http://slack.redux.io.
6+
7+
Thank you!
8+
9+
## Changelog ##
10+
11+
See [Changelog.md](https://github.com/dovy/redux-dev/blob/master/CHANGELOG.md)

plugins/redux-dev/ReduxCore/inc/extensions/customizer/extension_customizer.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/redux-dev/ReduxCore/inc/extensions/import_export/import_export/field_import_export.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/redux-dev/ReduxCore/inc/extensions/import_export/import_export/import_export.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#redux-object-browser{overflow:auto;word-wrap:break-word;max-height:600px;max-width:100%}

plugins/redux-dev/ReduxCore/inc/themecheck/css/admin.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/redux-dev/ReduxCore/inc/themecheck/js/admin.min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?php
2+
3+
if ( ! defined( 'ABSPATH' ) ) {
4+
exit;
5+
}
6+
7+
if ( ! class_exists( 'Redux_Validation_html', false ) ) {
8+
9+
class Redux_Validation_html extends Redux_Validate {
10+
11+
/**
12+
* Field Render Function.
13+
* Takes the vars and validates them
14+
*
15+
* @since ReduxFramework 1.0.0
16+
*/
17+
function validate() {
18+
$this->field[ 'msg' ] = ( isset( $this->field[ 'msg' ] ) ) ? $this->field[ 'msg' ] : esc_html__( 'Disallowed tags as defined by WordPress have been detected and removed.', 'redux-framework' );
19+
20+
$html = wp_kses_post( $this->value );
21+
22+
if ( $html != $this->value ) {
23+
$this->field[ 'current' ] = $html;
24+
$this->warning = $this->field;
25+
}
26+
27+
$this->value = $html;
28+
}
29+
}
30+
}

plugins/redux-dev/ReduxCore/inc/welcome/css/redux-welcome.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/redux-dev/ReduxCore/inc/welcome/js/redux-welcome-admin.min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)