Check if the software runs on a Scriptcase development environment or deployed server
Sometimes it is necessary to change parameters, depending on the environment the software is running on: Scriptcase Development or a server with the deployed application.
Example: Accessing files which have been uploaded, cause the absolute and the relative path is different.
Obviously the app could check the IP adress or the URL of the server it is running on.
Carlos (Scriptcase) has shown a much more sophisticated way during a Webinar.
He suggested to check the session variables of Scriptcase to check the path of the current environment:
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 |
<!doctype html> <!--[if !IE]> <html class="no-js non-ie" lang="en-US"> <![endif]--> <!--[if IE 7 ]> <html class="no-js ie7" lang="en-US"> <![endif]--> <!--[if IE 8 ]> <html class="no-js ie8" lang="en-US"> <![endif]--> <!--[if IE 9 ]> <html class="no-js ie9" lang="en-US"> <![endif]--> <!--[if gt IE 9]><!--> <html class="no-js" lang="en-US"> <!--<![endif]--> <head> <meta charset="UTF-8"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="profile" href="http://gmpg.org/xfn/11"/> <link rel="pingback" href="https://asdw.de/xmlrpc.php"/> <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' /> <link rel="alternate" hreflang="de" href="https://asdw.de" /> <link rel="alternate" hreflang="en" href="https://asdw.de/en/" /> <link rel="alternate" hreflang="x-default" href="https://asdw.de" /> <!-- This site is optimized with the Yoast SEO plugin v20.11 - https://yoast.com/wordpress/plugins/seo/ --> <title>Tips & Sniplets for Scriptcase developers + more ... - ASDW - Projekt</title> <link rel="canonical" href="https://asdw.de/en/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="website" /> <meta property="og:title" content="Tips & Sniplets for Scriptcase developers + more ... - ASDW - Projekt" /> <meta property="og:description" content="Sniplets & Tips Usefull codes, sniplets and tricks – we’re using ourselves too Scriptcase PHP Sniplets Free Tools Small Applications and Tools for developers and users. Always including the tables and codes to– add into projects– use just now(German only…Read more ›" /> <meta property="og:url" content="https://asdw.de/en/" /> <meta property="og:site_name" content="ASDW - Projekt" /> <meta property="article:modified_time" content="2018-03-30T18:22:57+00:00" /> <meta name="twitter:card" content="summary_large_image" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://asdw.de/en/","url":"https://asdw.de/en/","name":"Tips & Sniplets for Scriptcase developers + more ... - ASDW - Projekt","isPartOf":{"@id":"https://asdw.de/en/#website"},"datePublished":"2018-03-30T17:43:25+00:00","dateModified":"2018-03-30T18:22:57+00:00","breadcrumb":{"@id":"https://asdw.de/en/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://asdw.de/en/"]}]},{"@type":"BreadcrumbList","@id":"https://asdw.de/en/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home"}]},{"@type":"WebSite","@id":"https://asdw.de/en/#website","url":"https://asdw.de/en/","name":"ASDW - Projekt","description":"Populäre Projekte kostenlos und open source","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://asdw.de/en/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"}]}</script> <meta name="google-site-verification" content="MwJ2KIsNcWx6W7vwg2GdXWKESd1jKpFSnPBzvw8PFeM" /> <!-- / Yoast SEO plugin. --> <link rel="alternate" type="application/rss+xml" title="ASDW - Projekt » Feed" href="https://asdw.de/en/feed/" /> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/asdw.de\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.1.7"}}; /*! This file is auto-generated */ !function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode,e=(p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0),i.toDataURL());return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(p&&p.fillText)switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([129777,127995,8205,129778,127999],[129777,127995,8203,129778,127999])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(e=t.source||{}).concatemoji?c(e.concatemoji):e.wpemoji&&e.twemoji&&(c(e.twemoji),c(e.wpemoji)))}(window,document,window._wpemojiSettings); </script> <style type="text/css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='urvanov_syntax_highlighter-css' href='https://asdw.de/wp-content/plugins/urvanov-syntax-highlighter/css/min/urvanov_syntax_highlighter.min.css?ver=2.8.33' type='text/css' media='all' /> <link rel='stylesheet' id='wp-block-library-css' href='https://asdw.de/wp-includes/css/dist/block-library/style.min.css?ver=6.1.7' type='text/css' media='all' /> <link rel='stylesheet' id='classic-theme-styles-css' href='https://asdw.de/wp-includes/css/classic-themes.min.css?ver=1' type='text/css' media='all' /> <style id='global-styles-inline-css' type='text/css'> body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;}:where(.is-layout-flex){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} .wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;} :where(.wp-block-columns.is-layout-flex){gap: 2em;} .wp-block-pullquote{font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='sow-button-base-css' href='https://asdw.de/wp-content/plugins/so-widgets-bundle/widgets/button/css/style.css?ver=1.50.1' type='text/css' media='all' /> <link rel='stylesheet' id='sow-button-atom-9e7703286c3e-css' href='https://asdw.de/wp-content/uploads/siteorigin-widgets/sow-button-atom-9e7703286c3e.css?ver=6.1.7' type='text/css' media='all' /> <link rel='stylesheet' id='sow-button-atom-69481eb7d38b-css' href='https://asdw.de/wp-content/uploads/siteorigin-widgets/sow-button-atom-69481eb7d38b.css?ver=6.1.7' type='text/css' media='all' /> <link rel='stylesheet' id='wpml-legacy-horizontal-list-0-css' href='//asdw.de/wp-content/plugins/sitepress-multilingual-cms/templates/language-switchers/legacy-list-horizontal/style.min.css?ver=1' type='text/css' media='all' /> <link rel='stylesheet' id='wpml-menu-item-0-css' href='//asdw.de/wp-content/plugins/sitepress-multilingual-cms/templates/language-switchers/menu-item/style.min.css?ver=1' type='text/css' media='all' /> <link rel='stylesheet' id='responsive-style-css' href='https://asdw.de/wp-content/themes/responsive/core/css/style.min.css?ver=2.0' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-icons-css' href='https://asdw.de/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.16.0' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-frontend-legacy-css' href='https://asdw.de/wp-content/plugins/elementor/assets/css/frontend-legacy.min.css?ver=3.9.2' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://asdw.de/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.9.2' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-565-css' href='https://asdw.de/wp-content/uploads/elementor/css/post-565.css?ver=1672936518' type='text/css' media='all' /> <link rel='stylesheet' id='font-awesome-css' href='https://asdw.de/wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.min.css?ver=4.7.0' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-global-css' href='https://asdw.de/wp-content/uploads/elementor/css/global.css?ver=1672936518' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-395-css' href='https://asdw.de/wp-content/uploads/elementor/css/post-395.css?ver=1672943613' type='text/css' media='all' /> <link rel='stylesheet' id='enlighterjs-css' href='https://asdw.de/wp-content/plugins/enlighter/cache/enlighterjs.min.css?ver=j0VE3V/MtoWQD+0' type='text/css' media='all' /> <link rel='stylesheet' id='microthemer-css' href='https://asdw.de/wp-content/micro-themes/active-styles.css?mts=7&ver=6.1.7' type='text/css' media='all' /> <link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=auto&ver=6.1.7' type='text/css' media='all' /> <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type='text/javascript' src='https://asdw.de/wp-includes/js/jquery/jquery.min.js?ver=3.6.1' id='jquery-core-js'></script> <script type='text/javascript' src='https://asdw.de/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'></script> <script type='text/javascript' id='urvanov_syntax_highlighter_js-js-extra'> /* <![CDATA[ */ var UrvanovSyntaxHighlighterSyntaxSettings = {"version":"2.8.33","is_admin":"0","ajaxurl":"https:\/\/asdw.de\/wp-admin\/admin-ajax.php","prefix":"urvanov-syntax-highlighter-","setting":"urvanov-syntax-highlighter-setting","selected":"urvanov-syntax-highlighter-setting-selected","changed":"urvanov-syntax-highlighter-setting-changed","special":"urvanov-syntax-highlighter-setting-special","orig_value":"data-orig-value","debug":""}; var UrvanovSyntaxHighlighterSyntaxStrings = {"copy":"Copied to the clipboard","minimize":"Click To Expand Code"}; /* ]]> */ </script> <script type='text/javascript' src='https://asdw.de/wp-content/plugins/urvanov-syntax-highlighter/js/min/urvanov_syntax_highlighter.min.js?ver=2.8.33' id='urvanov_syntax_highlighter_js-js'></script> <script type='text/javascript' src='https://asdw.de/wp-content/themes/responsive/core/js/responsive-modernizr.min.js?ver=2.6.1' id='modernizr-js'></script> <link rel="https://api.w.org/" href="https://asdw.de/en/wp-json/" /><link rel="alternate" type="application/json" href="https://asdw.de/en/wp-json/wp/v2/pages/395" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://asdw.de/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://asdw.de/wp-includes/wlwmanifest.xml" /> <meta name="generator" content="WordPress 6.1.7" /> <link rel='shortlink' href='https://asdw.de/en/' /> <link rel="alternate" type="application/json+oembed" href="https://asdw.de/en/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fasdw.de%2Fen%2F" /> <link rel="alternate" type="text/xml+oembed" href="https://asdw.de/en/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fasdw.de%2Fen%2F&format=xml" /> <meta name="generator" content="WPML ver:4.5.14 stt:1,3;" /> <style> #category-posts-6-internal ul {padding: 0;} #category-posts-6-internal .cat-post-item img {max-width: initial; max-height: initial; margin: initial;} #category-posts-6-internal .cat-post-author {margin-bottom: 0;} #category-posts-6-internal .cat-post-thumbnail {margin: 5px 10px 5px 0;} #category-posts-6-internal .cat-post-item:before {content: ""; clear: both;} #category-posts-6-internal .cat-post-excerpt-more {display: inline-block;} #category-posts-6-internal .cat-post-item {list-style: none; margin: 3px 0 10px; padding: 3px 0;} #category-posts-6-internal .cat-post-item:after {content: ""; display: table; clear: both;} #category-posts-6-internal .cat-post-item .cat-post-title {overflow: hidden;text-overflow: ellipsis;white-space: initial;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;padding-bottom: 0 !important;} #category-posts-6-internal .cat-post-item:after {content: ""; display: table; clear: both;} #category-posts-6-internal .cat-post-thumbnail {display:block; float:left; margin:5px 10px 5px 0;} #category-posts-6-internal .cat-post-crop {overflow:hidden;display:block;} #category-posts-6-internal p {margin:5px 0 0 0} #category-posts-6-internal li > div {margin:5px 0 0 0; clear:both;} #category-posts-6-internal .dashicons {vertical-align:middle;} #category-posts-6-internal .cat-post-thumbnail .cat-post-crop img {height: 150px;} #category-posts-6-internal .cat-post-thumbnail .cat-post-crop img {width: 150px;} #category-posts-6-internal .cat-post-thumbnail .cat-post-crop img {object-fit: cover; max-width: 100%; display: block;} #category-posts-6-internal .cat-post-thumbnail .cat-post-crop-not-supported img {width: 100%;} #category-posts-6-internal .cat-post-thumbnail {max-width:100%;} #category-posts-6-internal .cat-post-item img {margin: initial;} #category-posts-4-internal ul {padding: 0;} #category-posts-4-internal .cat-post-item img {max-width: initial; max-height: initial; margin: initial;} #category-posts-4-internal .cat-post-author {margin-bottom: 0;} #category-posts-4-internal .cat-post-thumbnail {margin: 5px 10px 5px 0;} #category-posts-4-internal .cat-post-item:before {content: ""; clear: both;} #category-posts-4-internal .cat-post-excerpt-more {display: inline-block;} #category-posts-4-internal .cat-post-item {list-style: none; margin: 3px 0 10px; padding: 3px 0;} #category-posts-4-internal .cat-post-item:after {content: ""; display: table; clear: both;} #category-posts-4-internal .cat-post-item .cat-post-title {overflow: hidden;text-overflow: ellipsis;white-space: initial;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;padding-bottom: 0 !important;} #category-posts-4-internal .cat-post-item:after {content: ""; display: table; clear: both;} #category-posts-4-internal .cat-post-thumbnail {display:block; float:left; margin:5px 10px 5px 0;} #category-posts-4-internal .cat-post-crop {overflow:hidden;display:block;} #category-posts-4-internal p {margin:5px 0 0 0} #category-posts-4-internal li > div {margin:5px 0 0 0; clear:both;} #category-posts-4-internal .dashicons {vertical-align:middle;} #category-posts-4-internal .cat-post-thumbnail .cat-post-crop img {height: 150px;} #category-posts-4-internal .cat-post-thumbnail .cat-post-crop img {width: 150px;} #category-posts-4-internal .cat-post-thumbnail .cat-post-crop img {object-fit: cover; max-width: 100%; display: block;} #category-posts-4-internal .cat-post-thumbnail .cat-post-crop-not-supported img {width: 100%;} #category-posts-4-internal .cat-post-thumbnail {max-width:100%;} #category-posts-4-internal .cat-post-item img {margin: initial;} #category-posts-5-internal ul {padding: 0;} #category-posts-5-internal .cat-post-item img {max-width: initial; max-height: initial; margin: initial;} #category-posts-5-internal .cat-post-author {margin-bottom: 0;} #category-posts-5-internal .cat-post-thumbnail {margin: 5px 10px 5px 0;} #category-posts-5-internal .cat-post-item:before {content: ""; clear: both;} #category-posts-5-internal .cat-post-excerpt-more {display: inline-block;} #category-posts-5-internal .cat-post-item {list-style: none; margin: 3px 0 10px; padding: 3px 0;} #category-posts-5-internal .cat-post-current .cat-post-title {font-weight: bold; text-transform: uppercase;} #category-posts-5-internal [class*=cat-post-tax] {font-size: 0.85em;} #category-posts-5-internal [class*=cat-post-tax] * {display:inline-block;} #category-posts-5-internal .cat-post-item:after {content: ""; display: table; clear: both;} #category-posts-5-internal .cat-post-item .cat-post-title {overflow: hidden;text-overflow: ellipsis;white-space: initial;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;padding-bottom: 0 !important;} #category-posts-5-internal .cat-post-item:after {content: ""; display: table; clear: both;} #category-posts-5-internal .cat-post-thumbnail {display:block; float:left; margin:5px 10px 5px 0;} #category-posts-5-internal .cat-post-crop {overflow:hidden;display:block;} #category-posts-5-internal p {margin:5px 0 0 0} #category-posts-5-internal li > div {margin:5px 0 0 0; clear:both;} #category-posts-5-internal .dashicons {vertical-align:middle;} #category-posts-5-internal .cat-post-thumbnail .cat-post-crop img {height: 150px;} #category-posts-5-internal .cat-post-thumbnail .cat-post-crop img {width: 150px;} #category-posts-5-internal .cat-post-thumbnail .cat-post-crop img {object-fit: cover; max-width: 100%; display: block;} #category-posts-5-internal .cat-post-thumbnail .cat-post-crop-not-supported img {width: 100%;} #category-posts-5-internal .cat-post-thumbnail {max-width:100%;} #category-posts-5-internal .cat-post-item img {margin: initial;} #category-posts-7-internal ul {padding: 0;} #category-posts-7-internal .cat-post-item img {max-width: initial; max-height: initial; margin: initial;} #category-posts-7-internal .cat-post-author {margin-bottom: 0;} #category-posts-7-internal .cat-post-thumbnail {margin: 5px 10px 5px 0;} #category-posts-7-internal .cat-post-item:before {content: ""; clear: both;} #category-posts-7-internal .cat-post-excerpt-more {display: inline-block;} #category-posts-7-internal .cat-post-item {list-style: none; margin: 3px 0 10px; padding: 3px 0;} #category-posts-7-internal .cat-post-current .cat-post-title {font-weight: bold; text-transform: uppercase;} #category-posts-7-internal [class*=cat-post-tax] {font-size: 0.85em;} #category-posts-7-internal [class*=cat-post-tax] * {display:inline-block;} #category-posts-7-internal .cat-post-item:after {content: ""; display: table; clear: both;} #category-posts-7-internal .cat-post-item .cat-post-title {overflow: hidden;text-overflow: ellipsis;white-space: initial;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;padding-bottom: 0 !important;} #category-posts-7-internal .cat-post-item:after {content: ""; display: table; clear: both;} #category-posts-7-internal .cat-post-thumbnail {display:block; float:left; margin:5px 10px 5px 0;} #category-posts-7-internal .cat-post-crop {overflow:hidden;display:block;} #category-posts-7-internal p {margin:5px 0 0 0} #category-posts-7-internal li > div {margin:5px 0 0 0; clear:both;} #category-posts-7-internal .dashicons {vertical-align:middle;} #category-posts-7-internal .cat-post-thumbnail .cat-post-crop img {height: 150px;} #category-posts-7-internal .cat-post-thumbnail .cat-post-crop img {width: 150px;} #category-posts-7-internal .cat-post-thumbnail .cat-post-crop img {object-fit: cover; max-width: 100%; display: block;} #category-posts-7-internal .cat-post-thumbnail .cat-post-crop-not-supported img {width: 100%;} #category-posts-7-internal .cat-post-thumbnail {max-width:100%;} #category-posts-7-internal .cat-post-item img {margin: initial;} </style> <!-- Analytics by WP Statistics v14.0.2 - https://wp-statistics.com/ --> <script> jQuery(document).ready(function(){ var copyright_text = "Copyright by Gunter Eibl, email@GunterEibl.de"; var cyberchimps_link = ""; var siteurl = "https://asdw.de"; if(copyright_text == "") { jQuery(".copyright #copyright_link").text(" "+"Default copyright text"); } else{ jQuery(".copyright #copyright_link").text(" "+copyright_text); } jQuery(".copyright #copyright_link").attr('href',siteurl); if(cyberchimps_link == 1) { jQuery(".powered").css("display","block"); } else{ jQuery(".powered").css("display","none"); } }); </script> <!-- We need this for debugging --> <!-- Responsive 2.0 --> <style type="text/css" id="custom-background-css"> body.custom-background { background-color: #f7f7f7; } </style> <script type="text/javascript"> /* <![CDATA[ */ var isc_front_data = { caption_position : 'top-left', } /* ]]> */ </script> <style> .isc-source { position: relative; display: inline-block; line-height: initial; } .wp-block-cover .isc-source { position: static; } span.isc-source-text a { display: inline; color: #fff; } </style> <link rel="icon" href="https://asdw.de/wp-content/uploads/2017/02/cropped-ASDW_logo_95x95px-32x32.jpg" sizes="32x32" /> <link rel="icon" href="https://asdw.de/wp-content/uploads/2017/02/cropped-ASDW_logo_95x95px-192x192.jpg" sizes="192x192" /> <link rel="apple-touch-icon" href="https://asdw.de/wp-content/uploads/2017/02/cropped-ASDW_logo_95x95px-180x180.jpg" /> <meta name="msapplication-TileImage" content="https://asdw.de/wp-content/uploads/2017/02/cropped-ASDW_logo_95x95px-270x270.jpg" /> </head> <body class="home page-template page-template-full-width-page page-template-full-width-page-php page page-id-395 custom-background mt-395 mt-page-asdw-projekte elementor-default elementor-kit-565 elementor-page elementor-page-395"> <div id="container" class="hfeed"> <div class="skip-container cf"> <a class="skip-link screen-reader-text focusable" href="#content">↓ Skip to Main Content</a> </div><!-- .skip-container --> <div id="header" role="banner"> <div id="logo"> <a href="https://asdw.de/en/"><img src="https://asdw.de/wp-content/uploads/2017/02/ASDW_logo_rahmen_w370_h100_px.png" width="370" height="100" alt="ASDW – Projekt"/></a> </div><!-- end of #logo --> <div class="main-nav"><ul id="menu-main-menu" class="menu"><li id="menu-item-214" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-214"><a href="https://asdw.de/en/sniplets-tipps-for-scriptcase/">Sniplets & Tipps for Scriptcase</a></li> <li id="menu-item-215" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-215"><a href="https://asdw.de/en/impressum/">Impressum</a></li> <li id="menu-item-wpml-ls-2-en" class="menu-item wpml-ls-slot-2 wpml-ls-item wpml-ls-item-en wpml-ls-current-language wpml-ls-menu-item wpml-ls-last-item menu-item-type-wpml_ls_menu_item menu-item-object-wpml_ls_menu_item menu-item-has-children menu-item-wpml-ls-2-en"><a href="https://asdw.de/en/"><img class="wpml-ls-flag" src="https://asdw.de/wp-content/plugins/sitepress-multilingual-cms/res/flags/en.png" alt="English" /></a> <ul class="sub-menu"> <li id="menu-item-wpml-ls-2-de" class="menu-item wpml-ls-slot-2 wpml-ls-item wpml-ls-item-de wpml-ls-menu-item wpml-ls-first-item menu-item-type-wpml_ls_menu_item menu-item-object-wpml_ls_menu_item menu-item-wpml-ls-2-de"><a href="https://asdw.de"><img class="wpml-ls-flag" src="https://asdw.de/wp-content/plugins/sitepress-multilingual-cms/res/flags/de.png" alt="German" /></a></li> </ul> </li> </ul></div> </div><!-- end of #header --> <div id="wrapper" class="clearfix"> <div id="content-full" class="grid col-940"> <div id="post-395" class="post-395 page type-page status-publish hentry"> <h1 class="entry-title post-title">Tips & Sniplets for Scriptcase developers + more …</h1> <div class="post-entry"> <div data-elementor-type="wp-post" data-elementor-id="395" class="elementor elementor-395 elementor-379 elementor-bc-flex-widget"> <div class="elementor-inner"> <div class="elementor-section-wrap"> <section class="elementor-section elementor-top-section elementor-element elementor-element-b3906c2 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="b3906c2" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-row"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-71eaa8ce" data-id="71eaa8ce" data-element_type="column"> <div class="elementor-column-wrap elementor-element-populated"> <div class="elementor-widget-wrap"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-5b1380cd elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5b1380cd" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-row"> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-5a2f9527" data-id="5a2f9527" data-element_type="column"> <div class="elementor-column-wrap elementor-element-populated"> <div class="elementor-widget-wrap"> <div class="elementor-element elementor-element-3d9cf254 elementor-position-left elementor-view-default elementor-mobile-position-top elementor-vertical-align-top elementor-widget elementor-widget-icon-box" data-id="3d9cf254" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-" > <i class="fa fa-code" aria-hidden="true"></i> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > Sniplets & Tips </span> </h3> <p class="elementor-icon-box-description"> Usefull codes, sniplets and tricks - we're using ourselves too </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-438c92d0 elementor-align-center elementor-widget elementor-widget-button" data-id="438c92d0" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a href="https://asdw.de/en/sniplets-tipps-for-scriptcase/" class="elementor-button-link elementor-button elementor-size-sm" role="button"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">Scriptcase</span> </span> </a> </div> </div> </div> <div class="elementor-element elementor-element-10368b14 elementor-align-center elementor-widget elementor-widget-button" data-id="10368b14" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a href="https://asdw.de/sniplets-fuer-php/" class="elementor-button-link elementor-button elementor-size-sm" role="button"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">PHP Sniplets</span> </span> </a> </div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4a1b704a" data-id="4a1b704a" data-element_type="column"> <div class="elementor-column-wrap elementor-element-populated"> <div class="elementor-widget-wrap"> <div class="elementor-element elementor-element-169960df elementor-position-left elementor-view-default elementor-mobile-position-top elementor-vertical-align-top elementor-widget elementor-widget-icon-box" data-id="169960df" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-" > <i class="fa fa-globe" aria-hidden="true"></i> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > Free Tools </span> </h3> <p class="elementor-icon-box-description"> Small Applications and Tools for developers and users. Always including the tables and codes to<br>- add into projects<br>- use just now<br>(German only - sorry) </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-4cd6e0c4 elementor-align-center elementor-widget elementor-widget-button" data-id="4cd6e0c4" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a href="https://asdw.de/tools-asdw-de-kostenlose-online-tools/" class="elementor-button-link elementor-button elementor-size-sm" role="button"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">Have a look ...</span> </span> </a> </div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-45cc039c" data-id="45cc039c" data-element_type="column"> <div class="elementor-column-wrap elementor-element-populated"> <div class="elementor-widget-wrap"> <div class="elementor-element elementor-element-6b1bc510 elementor-position-left elementor-view-default elementor-mobile-position-top elementor-vertical-align-top elementor-widget elementor-widget-icon-box" data-id="6b1bc510" data-element_type="widget" data-widget_type="icon-box.default"> <div class="elementor-widget-container"> <div class="elementor-icon-box-wrapper"> <div class="elementor-icon-box-icon"> <span class="elementor-icon elementor-animation-" > <i class="fa fa-dollar" aria-hidden="true"></i> </span> </div> <div class="elementor-icon-box-content"> <h3 class="elementor-icon-box-title"> <span > License-Manager </span> </h3> <p class="elementor-icon-box-description"> (German only - sorry) </p> </div> </div> </div> </div> <div class="elementor-element elementor-element-5897aa80 elementor-align-center elementor-widget elementor-widget-button" data-id="5897aa80" data-element_type="widget" data-widget_type="button.default"> <div class="elementor-widget-container"> <div class="elementor-button-wrapper"> <a href="https://asdw.de/asdw-lizenz-manager-erstellen-und-kontrollieren-von-lizenzen/" class="elementor-button-link elementor-button elementor-size-sm" role="button"> <span class="elementor-button-content-wrapper"> <span class="elementor-button-text">Mehr dazu ...</span> </span> </a> </div> </div> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </div> </div> </section> </div> </div> </div> </div> <!-- end of .post-entry --> <div class="post-edit"></div> </div><!-- end of #post-395 --> </div><!-- end of #content-full --> </div><!-- end of #wrapper --> </div><!-- end of #container --> <div id="footer" class="clearfix" role="contentinfo"> <div id="footer-wrapper"> <div class="grid col-940"> <div class="grid col-540"> </div><!-- end of col-540 --> <div class="grid col-380 fit"> <ul class="social-icons"></ul><!-- .social-icons --> </div><!-- end of col-380 fit --> </div><!-- end of col-940 --> <div class="grid col-300 copyright"> © 2024<a id="copyright_link" href="https://asdw.de/en/" title="ASDW – Projekt"> ASDW – Projekt </a> </div><!-- end of .copyright --> <div class="grid col-300 scroll-top"><a href="#scroll-top" title="scroll to top">↑</a></div> <div class="grid col-300 fit powered"> <a href="http://cyberchimps.com/responsive-theme/" title="Responsive Theme" rel="noindex, nofollow">Responsive Theme</a> powered by <a href="http://wordpress.org/" title="WordPress"> WordPress</a> </div><!-- end .powered --> </div><!-- end #footer-wrapper --> </div><!-- end #footer --> <link rel='stylesheet' id='e-animations-css' href='https://asdw.de/wp-content/plugins/elementor/assets/lib/animations/animations.min.css?ver=3.9.2' type='text/css' media='all' /> <script type='text/javascript' src='https://asdw.de/wp-content/themes/responsive/core/js/responsive-scripts.min.js?ver=1.2.6' id='responsive-scripts-js'></script> <script type='text/javascript' src='https://asdw.de/wp-content/themes/responsive/core/js/jquery.placeholder.min.js?ver=2.0.7' id='jquery-placeholder-js'></script> <script type='text/javascript' src='https://asdw.de/wp-content/plugins/image-source-control-isc/public/assets/js/captions.js?ver=2.8.0' id='isc_caption-js'></script> <script type='text/javascript' src='https://asdw.de/wp-content/plugins/enlighter/cache/enlighterjs.min.js?ver=j0VE3V/MtoWQD+0' id='enlighterjs-js'></script> <script type='text/javascript' id='enlighterjs-js-after'> !function(e,n){if("undefined"!=typeof EnlighterJS){var o={"selectors":{"block":"pre.EnlighterJSRAW","inline":"code.EnlighterJSRAW"},"options":{"indent":4,"ampersandCleanup":true,"linehover":true,"rawcodeDbclick":false,"textOverflow":"break","linenumbers":true,"theme":"enlighter","language":"generic","retainCssClasses":false,"collapse":false,"toolbarOuter":"","toolbarTop":"{BTN_RAW}{BTN_COPY}{BTN_WINDOW}{BTN_WEBSITE}","toolbarBottom":""}};(e.EnlighterJSINIT=function(){EnlighterJS.init(o.selectors.block,o.selectors.inline,o.options)})()}else{(n&&(n.error||n.log)||function(){})("Error: EnlighterJS resources not loaded yet!")}}(window,console); </script> <script type='text/javascript' src='https://asdw.de/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=3.9.2' id='elementor-webpack-runtime-js'></script> <script type='text/javascript' src='https://asdw.de/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.9.2' id='elementor-frontend-modules-js'></script> <script type='text/javascript' src='https://asdw.de/wp-content/plugins/elementor/assets/lib/waypoints/waypoints.min.js?ver=4.0.2' id='elementor-waypoints-js'></script> <script type='text/javascript' src='https://asdw.de/wp-includes/js/jquery/ui/core.min.js?ver=1.13.2' id='jquery-ui-core-js'></script> <script type='text/javascript' src='https://asdw.de/wp-content/plugins/elementor/assets/lib/swiper/swiper.min.js?ver=5.3.6' id='swiper-js'></script> <script type='text/javascript' src='https://asdw.de/wp-content/plugins/elementor/assets/lib/share-link/share-link.min.js?ver=3.9.2' id='share-link-js'></script> <script type='text/javascript' src='https://asdw.de/wp-content/plugins/elementor/assets/lib/dialog/dialog.min.js?ver=4.9.0' id='elementor-dialog-js'></script> <script type='text/javascript' id='elementor-frontend-js-before'> var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Extra","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Extra","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}}},"version":"3.9.2","is_static":false,"experimentalFeatures":{"e_import_export":true,"e_hidden_wordpress_widgets":true,"landing-pages":true,"elements-color-picker":true,"favorite-widgets":true,"admin-top-bar":true,"kit-elements-defaults":true},"urls":{"assets":"https:\/\/asdw.de\/wp-content\/plugins\/elementor\/assets\/"},"settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":395,"title":"Tips%20%26%20Sniplets%20for%20Scriptcase%20developers%20%2B%20more%20...%20-%20ASDW%20-%20Projekt","excerpt":"","featuredImage":false}}; </script> <script type='text/javascript' src='https://asdw.de/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.9.2' id='elementor-frontend-js'></script> <script type='text/javascript' src='https://asdw.de/wp-content/plugins/elementor/assets/js/preloaded-modules.min.js?ver=3.9.2' id='preloaded-modules-js'></script> <script type='text/javascript' src='https://asdw.de/wp-includes/js/underscore.min.js?ver=1.13.4' id='underscore-js'></script> <script type='text/javascript' id='wp-util-js-extra'> /* <![CDATA[ */ var _wpUtilSettings = {"ajax":{"url":"\/wp-admin\/admin-ajax.php"}}; /* ]]> */ </script> <script type='text/javascript' src='https://asdw.de/wp-includes/js/wp-util.min.js?ver=6.1.7' id='wp-util-js'></script> <script type='text/javascript' id='wpforms-elementor-js-extra'> /* <![CDATA[ */ var wpformsElementorVars = {"captcha_provider":"recaptcha","recaptcha_type":"invisible"}; /* ]]> */ </script> <script type='text/javascript' src='https://asdw.de/wp-content/plugins/wpforms-lite/assets/js/integrations/elementor/frontend.min.js?ver=1.8.1.1' id='wpforms-elementor-js'></script> </body> </html> |