File size: 32,496 Bytes
a47e1ac |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 |
"use strict";
var { registerBlockType } = wp.blocks;
var gcel = wp.element.createElement;
registerBlockType( 'ultimate-manga-scraper/ums-display', {
title: 'Ultimate Mange Scraper Display Posts',
icon: 'smartphone',
category: 'embed',
attributes: {
ruletype : {
default: '',
type: 'string',
},
ruleid : {
default: '',
type: 'string',
},
wrapper : {
default: 'ul',
type: 'string',
},
read_more_text : {
default: '',
type: 'string',
},
wrapper_class : {
default: 'display-posts-listing',
type: 'string',
},
excerpt_font_size : {
default: '100%',
type: 'string',
},
title_font_size : {
default: '100%',
type: 'string',
},
link_to_source : {
default: 'no',
type: 'string',
},
excerpt_color : {
default: '#000000',
type: 'string',
},
title_color : {
default: '#000000',
type: 'string',
},
posts_per_page : {
default: '10',
type: 'string',
},
post_type : {
default: 'post',
type: 'string',
},
orderby : {
default: 'date',
type: 'string',
},
no_posts_message : {
default: 'No posts found.',
type: 'string',
},
include_title : {
default: 'true',
type: 'string',
},
include_link : {
default: 'true',
type: 'string',
},
include_excerpt : {
default: 'false',
type: 'string',
},
include_date : {
default: 'false',
type: 'string',
},
include_content : {
default: 'false',
type: 'string',
},
include_author : {
default: 'false',
type: 'string',
},
image_size : {
default: 'false',
type: 'string',
},
excerpt_more : {
default: 'false',
type: 'string',
},
excerpt_more_link : {
default: 'false',
type: 'string',
},
excerpt_length : {
default: 'false',
type: 'string',
},
date_format : {
default: '(n/j/Y)',
type: 'string',
},
content_class : {
default: 'content',
type: 'string',
},
author : {
default: '',
type: 'string',
}
},
keywords: ['display', 'posts', 'ums'],
edit: (function( props ) {
var ruletype = props.attributes.ruletype;
var ruleid = props.attributes.ruleid;
var wrapper = props.attributes.wrapper;
var read_more_text = props.attributes.read_more_text;
var wrapper_class = props.attributes.wrapper_class;
var excerpt_font_size = props.attributes.excerpt_font_size;
var title_font_size = props.attributes.title_font_size;
var excerpt_color = props.attributes.excerpt_color;
var title_color = props.attributes.title_color;
var posts_per_page = props.attributes.posts_per_page;
var post_type = props.attributes.post_type;
var orderby = props.attributes.orderby;
var no_posts_message = props.attributes.no_posts_message;
var include_title = props.attributes.include_title;
var include_link = props.attributes.include_link;
var include_excerpt = props.attributes.include_excerpt;
var include_date = props.attributes.include_date;
var include_content = props.attributes.include_content;
var include_author = props.attributes.include_author;
var image_size = props.attributes.image_size;
var excerpt_more = props.attributes.excerpt_more;
var excerpt_more_link = props.attributes.excerpt_more_link;
var excerpt_length = props.attributes.excerpt_length;
var date_format = props.attributes.date_format;
var content_class = props.attributes.content_class;
var author = props.attributes.author;
function updateMessage( event ) {
props.setAttributes( { ruletype: event.target.value} );
}
function updateMessage2( event ) {
props.setAttributes( { ruleid: event.target.value} );
}
function updateMessage3( event ) {
props.setAttributes( { wrapper: event.target.value} );
}
function updateMessage4( event ) {
props.setAttributes( { read_more_text: event.target.value} );
}
function updateMessage5( event ) {
props.setAttributes( { wrapper_class: event.target.value} );
}
function updateMessage6( event ) {
props.setAttributes( { excerpt_font_size: event.target.value} );
}
function updateMessage7( event ) {
props.setAttributes( { title_font_size: event.target.value} );
}
function updateMessage8( event ) {
props.setAttributes( { excerpt_color: event.target.value} );
}
function updateMessage9( event ) {
props.setAttributes( { title_color: event.target.value} );
}
function updateMessage10( event ) {
props.setAttributes( { posts_per_page: event.target.value} );
}
function updateMessage11( event ) {
props.setAttributes( { post_type: event.target.value} );
}
function updateMessage12( event ) {
props.setAttributes( { orderby: event.target.value} );
}
function updateMessage13( event ) {
props.setAttributes( { no_posts_message: event.target.value} );
}
function updateMessage14( event ) {
props.setAttributes( { include_title: event.target.value} );
}
function updateMessage15( event ) {
props.setAttributes( { include_link: event.target.value} );
}
function updateMessage16( event ) {
props.setAttributes( { include_excerpt: event.target.value} );
}
function updateMessage17( event ) {
props.setAttributes( { include_date: event.target.value} );
}
function updateMessage18( event ) {
props.setAttributes( { include_content: event.target.value} );
}
function updateMessage19( event ) {
props.setAttributes( { include_author: event.target.value} );
}
function updateMessage20( event ) {
props.setAttributes( { image_size: event.target.value} );
}
function updateMessage21( event ) {
props.setAttributes( { excerpt_more: event.target.value} );
}
function updateMessage22( event ) {
props.setAttributes( { excerpt_more_link: event.target.value} );
}
function updateMessage23( event ) {
props.setAttributes( { excerpt_length: event.target.value} );
}
function updateMessage24( event ) {
props.setAttributes( { date_format: event.target.value} );
}
function updateMessage25( event ) {
props.setAttributes( { content_class: event.target.value} );
}
function updateMessage26( event ) {
props.setAttributes( { author: event.target.value} );
}
return gcel(
'div',
{ className: 'coderevolution_gutenberg_div' },
gcel(
'h4',
{ className: 'coderevolution_gutenberg_title' },
'Ultimate Mange Scraper Display Posts ',
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'This block is used to display posts generated by this plugin. It has many features that can be customized.'
)
)
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Rule Type: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select the source of the posts that will be listed.'
)
),
gcel(
'select',
{ value: ruletype, onChange: updateMessage, className: 'coderevolution_gutenberg_select' },
gcel(
'option',
{ value: 0},
'APKs to Posts'
),
gcel(
'option',
{ value: 0},
'Custom Page Import'
),
gcel(
'option',
{ value: ''},
'Any'
)
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Rule ID: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select the ID of the rule you wish to list posts from. To list all posts from a specific rule, leave this field blank.'
)
),
gcel(
'input',
{ type:'number',min:0,placeholder:'Rule id to list', value: ruleid, onChange: updateMessage2, className: 'coderevolution_gutenberg_input' }
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Wrapper: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select the wrapper type that will be used for displaying results.'
)
),
gcel(
'select',
{ value: wrapper, onChange: updateMessage3, className: 'coderevolution_gutenberg_select' },
gcel(
'option',
{ value: 'ul'},
'List'
),
gcel(
'option',
{ value: 'div'},
'Div'
)
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Read More Text: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Input the text that will be displayed for the "Read More" link.'
)
),
gcel(
'textarea',
{ rows:1,placeholder:'Read more...', value: read_more_text, onChange: updateMessage4, className: 'coderevolution_gutenberg_input' }
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Wrapper Class: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select the class that will be used for wrapping results.'
)
),
gcel(
'textarea',
{ rows:1,placeholder:'div class', value: wrapper_class, onChange: updateMessage5, className: 'coderevolution_gutenberg_input' }
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Excerpt Font Size: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select the font size of the excerpt (CSS font size supported).'
)
),
gcel(
'textarea',
{ rows:1,placeholder:'10px', value: excerpt_font_size, onChange: updateMessage6, className: 'coderevolution_gutenberg_input' }
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Title Font Size: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select the font size of the title (CSS font size supported).'
)
),
gcel(
'textarea',
{ rows:1,placeholder:'12px', value: title_font_size, onChange: updateMessage7, className: 'coderevolution_gutenberg_input' }
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Excerpt Color: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select the color of the excerpt (CSS font color supported).'
)
),
gcel(
'textarea',
{ rows:1,placeholder:'#000000', value: excerpt_color, onChange: updateMessage8, className: 'coderevolution_gutenberg_input' }
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Title Color: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select the color of the title (CSS font color supported).'
)
),
gcel(
'textarea',
{ rows:1,placeholder:'#000000', value: title_color, onChange: updateMessage9, className: 'coderevolution_gutenberg_input' }
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Posts Per Page: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select the number of posts to be shown at max.'
)
),
gcel(
'input',
{ type:'number',min:1,placeholder:'10', value: posts_per_page, onChange: updateMessage10, className: 'coderevolution_gutenberg_input' }
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Post Type: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select the post type to be listed. You can input a comma separated list of multiple post types (custom post types supported).'
)
),
gcel(
'textarea',
{ rows:1,placeholder:'post', value: post_type, onChange: updateMessage11, className: 'coderevolution_gutenberg_input' }
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Order By: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select how to order results.'
)
),
gcel(
'select',
{ value: orderby, onChange: updateMessage12, className: 'coderevolution_gutenberg_select' },
gcel(
'option',
{ value: 'none'},
'none'
),
gcel(
'option',
{ value: 'date'},
'date'
),
gcel(
'option',
{ value: 'ID'},
'ID'
),
gcel(
'option',
{ value: 'author'},
'author'
),
gcel(
'option',
{ value: 'title'},
'title'
),
gcel(
'option',
{ value: 'name'},
'name'
),
gcel(
'option',
{ value: 'type'},
'type'
),
gcel(
'option',
{ value: 'modified'},
'modified'
),
gcel(
'option',
{ value: 'parent'},
'parent'
),
gcel(
'option',
{ value: 'rand'},
'rand'
),
gcel(
'option',
{ value: 'comment_count'},
'comment_count'
),
gcel(
'option',
{ value: 'relevance'},
'relevance'
),
gcel(
'option',
{ value: 'menu_order'},
'menu_order'
)
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'No Posts Message: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select the message that will be shown when no posts found.'
)
),
gcel(
'textarea',
{ rows:1,placeholder:'No posts found.', value: no_posts_message, onChange: updateMessage13, className: 'coderevolution_gutenberg_input' }
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Include Title: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select if you wish to include the title in results.'
)
),
gcel(
'select',
{ value: include_title, onChange: updateMessage14, className: 'coderevolution_gutenberg_select' },
gcel(
'option',
{ value: 'true'},
'true'
),
gcel(
'option',
{ value: 'false'},
'false'
)
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Include Link: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select if you wish to include the link in results.'
)
),
gcel(
'select',
{ value: include_link, onChange: updateMessage15, className: 'coderevolution_gutenberg_select' },
gcel(
'option',
{ value: 'true'},
'true'
),
gcel(
'option',
{ value: 'false'},
'false'
)
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Include Excerpt: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select if you wish to include the excerpt in results.'
)
),
gcel(
'select',
{ value: include_excerpt, onChange: updateMessage16, className: 'coderevolution_gutenberg_select' },
gcel(
'option',
{ value: 'false'},
'false'
),
gcel(
'option',
{ value: 'true'},
'true'
)
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Include Date: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select if you wish to include the date in results.'
)
),
gcel(
'select',
{ value: include_date, onChange: updateMessage17, className: 'coderevolution_gutenberg_select' },
gcel(
'option',
{ value: 'false'},
'false'
),
gcel(
'option',
{ value: 'true'},
'true'
)
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Include Content: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select if you wish to include the content in results.'
)
),
gcel(
'select',
{ value: include_content, onChange: updateMessage18, className: 'coderevolution_gutenberg_select' },
gcel(
'option',
{ value: 'false'},
'false'
),
gcel(
'option',
{ value: 'true'},
'true'
)
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Include Author: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select if you wish to include the author in results.'
)
),
gcel(
'select',
{ value: include_author, onChange: updateMessage19, className: 'coderevolution_gutenberg_select' },
gcel(
'option',
{ value: 'false'},
'false'
),
gcel(
'option',
{ value: 'true'},
'true'
)
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Image Size: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select the image size to be shown in results.'
)
),
gcel(
'select',
{ value: image_size, onChange: updateMessage20, className: 'coderevolution_gutenberg_select' },
gcel(
'option',
{ value: 'thumbnail'},
'thumbnail'
),
gcel(
'option',
{ value: 'medium'},
'medium'
),
gcel(
'option',
{ value: 'large'},
'large'
),
gcel(
'option',
{ value: 'full'},
'full'
)
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Show Read More: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select if you wish to show the "Read More" button in results.'
)
),
gcel(
'select',
{ value: excerpt_more, onChange: updateMessage21, className: 'coderevolution_gutenberg_select' },
gcel(
'option',
{ value: 'false'},
'false'
),
gcel(
'option',
{ value: 'true'},
'true'
)
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Link Read More: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select if you wish to link the "Read more" text from the excerpt.'
)
),
gcel(
'select',
{ value: excerpt_more_link, onChange: updateMessage22, className: 'coderevolution_gutenberg_select' },
gcel(
'option',
{ value: 'false'},
'false'
),
gcel(
'option',
{ value: 'true'},
'true'
)
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Excerpt Lenght: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Select the length of the excerpt (word count).'
)
),
gcel(
'input',
{ type:'number', min:1, placeholder:'30', value: excerpt_length, onChange: updateMessage23, className: 'coderevolution_gutenberg_input' }
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Date Format: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Input the date format to be used.'
)
),
gcel(
'textarea',
{ rows:1,placeholder:'(n/j/Y)', value: date_format, onChange: updateMessage24, className: 'coderevolution_gutenberg_input' }
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Content Class: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Input the class to be assigned to resulting content.'
)
),
gcel(
'textarea',
{ rows:1,placeholder:'content', value: content_class, onChange: updateMessage25, className: 'coderevolution_gutenberg_input' }
),
gcel(
'br'
),
gcel(
'label',
{ className: 'coderevolution_gutenberg_label' },
'Post Author: '
),
gcel(
'div',
{className:'bws_help_box bws_help_box_right dashicons dashicons-editor-help'}
,
gcel(
'div',
{className:'bws_hidden_help_text'},
'Input the user_nicename of the author to list posts from. You can also use "current" to list posts for the currently logged in user.'
)
),
gcel(
'textarea',
{ rows:1,placeholder:'author name', value: author, onChange: updateMessage26, className: 'coderevolution_gutenberg_input' }
)
);
}),
save: (function( props ) {
return null;
}),
} ); |