Symfony Exception

ErrorException ViewException ViewException

HTTP 500 Internal Server Error

Undefined array key "file" (View: /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/resources/views/partials/content-page.blade.php) (View: /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/resources/views/partials/content-page.blade.php)

Exceptions 3

Illuminate\View\ ViewException

Show exception properties
Illuminate\View\ViewException {#29305
  #severity: E_ERROR
}
  1.     if ( ! $image_src ) {
  2.         return $image;
  3.     }
  4.     // Bail early if an image has been inserted and later edited.
  5.     if ( preg_match'/-e[0-9]{13}/'$image_meta['file'], $img_edit_hash )
  6.         && ! str_containswp_basename$image_src ), $img_edit_hash[0] )
  7.     ) {
  8.         return $image;
  9.     }
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.   <body <?php body_class(); ?>>
  2.     <?php wp_body_open(); ?>
  3.     <?php do_action('get_header'); ?>
  4.     <div id="app">
  5.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  6.     </div>
  7.     <?php do_action('get_footer'); ?>
  8.     <?php wp_footer(); ?>
  9.   </body>
include('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/index.php') in /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/template-loader.php') in /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-blog-header.php') in /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/index.php (line 6)
  1. <?php
  2. /**
  3.  * WordPress View Bootstrapper
  4.  */
  5. define('WP_USE_THEMES'true);
  6. require __DIR__ '/wp/wp-blog-header.php';

Illuminate\View\ ViewException

Undefined array key "file" (View: /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/resources/views/partials/content-page.blade.php)

  1.     if ( ! $image_src ) {
  2.         return $image;
  3.     }
  4.     // Bail early if an image has been inserted and later edited.
  5.     if ( preg_match'/-e[0-9]{13}/'$image_meta['file'], $img_edit_hash )
  6.         && ! str_containswp_basename$image_src ), $img_edit_hash[0] )
  7.     ) {
  8.         return $image;
  9.     }
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1. <?php $__env->startSection('content'); ?>
  2.   <div class="main-inner">
  3.     <?php while(have_posts()): ?> <?php (the_post()); ?>
  4.       <?php echo $__env->make('partials.page-header'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  5.       <?php echo $__env->first(['partials.content-page''partials.content'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  6.     <?php endwhile; ?>
  7.   </div>
  8. <?php $__env->stopSection(); ?>
  9. <?php echo $__env->make('layouts.app'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/resources/views/page.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.   <body <?php body_class(); ?>>
  2.     <?php wp_body_open(); ?>
  3.     <?php do_action('get_header'); ?>
  4.     <div id="app">
  5.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  6.     </div>
  7.     <?php do_action('get_footer'); ?>
  8.     <?php wp_footer(); ?>
  9.   </body>
include('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/index.php') in /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/template-loader.php') in /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-blog-header.php') in /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/index.php (line 6)
  1. <?php
  2. /**
  3.  * WordPress View Bootstrapper
  4.  */
  5. define('WP_USE_THEMES'true);
  6. require __DIR__ '/wp/wp-blog-header.php';

ErrorException

Undefined array key "file"

  1.     if ( ! $image_src ) {
  2.         return $image;
  3.     }
  4.     // Bail early if an image has been inserted and later edited.
  5.     if ( preg_match'/-e[0-9]{13}/'$image_meta['file'], $img_edit_hash )
  6.         && ! str_containswp_basename$image_src ), $img_edit_hash[0] )
  7.     ) {
  8.         return $image;
  9.     }
  1.      * @throws \ErrorException
  2.      */
  3.     public function handleError($level$message$file ''$line 0$context = [])
  4.     {
  5.         try {
  6.             parent::handleError($level$message$file$line$context);
  7.         } catch (Throwable $e) {
  8.             if (! apply_filters('acorn/throw_error_exception'true$e)) {
  9.                 return false;
  10.             }
HandleExceptions->handleError(2, 'Undefined array key "file"', '/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/media.php', 1723) in /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/media.php (line 1723)
  1.     if ( ! $image_src ) {
  2.         return $image;
  3.     }
  4.     // Bail early if an image has been inserted and later edited.
  5.     if ( preg_match'/-e[0-9]{13}/'$image_meta['file'], $img_edit_hash )
  6.         && ! str_containswp_basename$image_src ), $img_edit_hash[0] )
  7.     ) {
  8.         return $image;
  9.     }
wp_image_add_srcset_and_sizes('<img width="724" height="1024" src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-AufnahmeAntrag-02-Formular-pdf-724x1024.jpg" alt="" class="wp-image-731"/>', array('sizes' => array('full' => array('file' => '230929-GNP-AufnahmeAntrag-02-Formular-pdf.jpg', 'width' => 1058, 'height' => 1497, 'mime-type' => 'image/jpeg', 'filesize' => 278045), 'medium' => array('file' => '230929-GNP-AufnahmeAntrag-02-Formular-pdf-212x300.jpg', 'width' => 212, 'height' => 300, 'mime-type' => 'image/jpeg', 'filesize' => 74009), 'large' => array('file' => '230929-GNP-AufnahmeAntrag-02-Formular-pdf-724x1024.jpg', 'width' => 724, 'height' => 1024, 'mime-type' => 'image/jpeg', 'filesize' => 164946), 'thumbnail' => array('file' => '230929-GNP-AufnahmeAntrag-02-Formular-pdf-106x150.jpg', 'width' => 106, 'height' => 150, 'mime-type' => 'image/jpeg', 'filesize' => 64887)), 'filesize' => 817267), 731) in /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/media.php (line 2155)
  1.      */
  2.     $add apply_filters'wp_img_tag_add_srcset_and_sizes_attr'true$image$context$attachment_id );
  3.     if ( true === $add ) {
  4.         $image_meta wp_get_attachment_metadata$attachment_id );
  5.         return wp_image_add_srcset_and_sizes$image$image_meta$attachment_id );
  6.     }
  7.     return $image;
  8. }
wp_img_tag_add_srcset_and_sizes_attr('<img width="724" height="1024" src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-AufnahmeAntrag-02-Formular-pdf-724x1024.jpg" alt="" class="wp-image-731"/>', 'the_content', 731) in /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/media.php (line 1888)
  1.                 $filtered_image wp_img_tag_add_width_and_height_attr$filtered_image$context$attachment_id );
  2.             }
  3.             // Add 'srcset' and 'sizes' attributes if applicable.
  4.             if ( $attachment_id && ! str_contains$filtered_image' srcset=' ) ) {
  5.                 $filtered_image wp_img_tag_add_srcset_and_sizes_attr$filtered_image$context$attachment_id );
  6.             }
  7.             // Add loading optimization attributes if applicable.
  8.             $filtered_image wp_img_tag_add_loading_optimization_attrs$filtered_image$context );
wp_filter_content_tags('<p class="has-secondary-color has-text-color has-large-font-size">Hier finden Sie alle aktuell gültigen Formulare zum Download:</p><ul><li>Antrag auf Änderung des Mitgliedstatus (ordentliches Mitglied zum Seniormitglied = Ruhestandsmitteilung)</li><li>Antrag auf Fortsetzung der Juniormitgliedschaft (nach 5 Jahren, bei fortbestehender Weiterbildung)</li></ul><p>Einen Mitgliedsantrag stellen Sie bitte nur noch online, nämlich <a href="https://easyverein.com/public/GNP/applicationform/" target="_blank" rel="noreferrer noopener">hier</a>.</p><p>Elternzeit beantragen Sie bitte formlos per Brief an die Geschäftsstelle, zusammen mit einer Kopie des offiziellen Genehmigungsschreibens Ihres Arbeitgebers.</p><h3 class="wp-block-heading has-secondary-color has-text-color">Formulare</h3><p></p><div class="wp-block-columns is-layout-flex wp-container-core-columns-layout-1 wp-block-columns-is-layout-flex"><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-AufnahmeAntrag-02-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-AufnahmeAntrag-02-Formular-pdf-724x1024.jpg" alt="" class="wp-image-731"/></a></figure><p></p><p class="has-small-font-size">Zusatzformular 2 zur Aufnahme<br>Antragsformular zur Anerkennung äquivalenter Weiterbildung</p></div><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:70%"><div class="wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-layout-1 wp-block-group-is-layout-constrained"><p>Falls Sie keinen Schwerpunkt bzw. das Additivfach Neuropädiatrie erworben, aber eine vergleichbare klinische Ausbildung durchaufen haben, können Sie dies mit diesem Formular belegen. Bitte laden Sie dieses Formular und die entsprechenden Nachweise mit dem Mitgliedsantrag im Mitgliederportal hoch.</p></div></div></div><hr class="wp-block-separator has-alpha-channel-opacity mb-4"/><p></p><div class="wp-block-columns is-layout-flex wp-container-core-columns-layout-2 wp-block-columns-is-layout-flex"><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-ErklaerungJuniormitgliedschaft-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-ErklaerungJuniormitgliedschaft-Formular-pdf-724x1024.jpg" alt="" class="wp-image-733"/></a></figure><p></p><p class="has-small-font-size">Erklärung zur Juniormitgliedschaft<br>Antragsformular zur Fortsetzung der Juniormitgliedschaft (&gt;5 Jahre)</p></div><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:70%"><div class="wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-layout-2 wp-block-group-is-layout-constrained"><p>Wenn Sie Ihre Juniormitgliedschaft zum Ablauf der durch die Satzung auf 5 Jahre beschränkten Frist verlängern wollen, weil Sie die Weiterbildung noch nicht abgeschlossen haben, reichen Sie dieses Formular bitte mit einer entsprechenden Unterschrift der/des Weiterbilder*in ein. Sie können auch die Erlangung des Schwerpunkttitels/Additivfachs damit anzeigen.</p></div></div></div><hr class="wp-block-separator has-alpha-channel-opacity mb-4"/><p></p><div class="wp-block-columns is-layout-flex wp-container-core-columns-layout-3 wp-block-columns-is-layout-flex"><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-MitteilungRuhestand-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-MitteilungRuhestand-Formular-pdf-724x1024.jpg" alt="" class="wp-image-734"/></a></figure><p></p><p class="has-small-font-size">Antrag auf Seniormitgliedschaft<br>Antragsformular zur Umwandlung einer ordentlichen in eine Senior-Mitgliedschaft (Ruhestandsmitteilung)</p></div><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:70%"><div class="wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-layout-3 wp-block-group-is-layout-constrained"><p>Wenn Sie in den Ruhestand wechseln können Sie das mit diesem Formular mitteilen, und gleichzeitig ggf. die Seniormitgliedschaft beantragen.</p></div></div></div>') in /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/class-wp-hook.php (line 324)
  1.                 // Avoid the array_slice() if possible.
  2.                 if ( === $the_['accepted_args'] ) {
  3.                     $value call_user_func$the_['function'] );
  4.                 } elseif ( $the_['accepted_args'] >= $num_args ) {
  5.                     $value call_user_func_array$the_['function'], $args );
  6.                 } else {
  7.                     $value call_user_func_array$the_['function'], array_slice$args0$the_['accepted_args'] ) );
  8.                 }
  9.             }
  10.         } while ( false !== next$this->iterations$nesting_level ] ) );
WP_Hook->apply_filters('<p class="has-secondary-color has-text-color has-large-font-size">Hier finden Sie alle aktuell gültigen Formulare zum Download:</p><ul><li>Antrag auf Änderung des Mitgliedstatus (ordentliches Mitglied zum Seniormitglied = Ruhestandsmitteilung)</li><li>Antrag auf Fortsetzung der Juniormitgliedschaft (nach 5 Jahren, bei fortbestehender Weiterbildung)</li></ul><p>Einen Mitgliedsantrag stellen Sie bitte nur noch online, nämlich <a href="https://easyverein.com/public/GNP/applicationform/" target="_blank" rel="noreferrer noopener">hier</a>.</p><p>Elternzeit beantragen Sie bitte formlos per Brief an die Geschäftsstelle, zusammen mit einer Kopie des offiziellen Genehmigungsschreibens Ihres Arbeitgebers.</p><h3 class="wp-block-heading has-secondary-color has-text-color">Formulare</h3><p></p><div class="wp-block-columns is-layout-flex wp-container-core-columns-layout-1 wp-block-columns-is-layout-flex"><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-AufnahmeAntrag-02-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-AufnahmeAntrag-02-Formular-pdf-724x1024.jpg" alt="" class="wp-image-731"/></a></figure><p></p><p class="has-small-font-size">Zusatzformular 2 zur Aufnahme<br>Antragsformular zur Anerkennung äquivalenter Weiterbildung</p></div><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:70%"><div class="wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-layout-1 wp-block-group-is-layout-constrained"><p>Falls Sie keinen Schwerpunkt bzw. das Additivfach Neuropädiatrie erworben, aber eine vergleichbare klinische Ausbildung durchaufen haben, können Sie dies mit diesem Formular belegen. Bitte laden Sie dieses Formular und die entsprechenden Nachweise mit dem Mitgliedsantrag im Mitgliederportal hoch.</p></div></div></div><hr class="wp-block-separator has-alpha-channel-opacity mb-4"/><p></p><div class="wp-block-columns is-layout-flex wp-container-core-columns-layout-2 wp-block-columns-is-layout-flex"><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-ErklaerungJuniormitgliedschaft-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-ErklaerungJuniormitgliedschaft-Formular-pdf-724x1024.jpg" alt="" class="wp-image-733"/></a></figure><p></p><p class="has-small-font-size">Erklärung zur Juniormitgliedschaft<br>Antragsformular zur Fortsetzung der Juniormitgliedschaft (&gt;5 Jahre)</p></div><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:70%"><div class="wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-layout-2 wp-block-group-is-layout-constrained"><p>Wenn Sie Ihre Juniormitgliedschaft zum Ablauf der durch die Satzung auf 5 Jahre beschränkten Frist verlängern wollen, weil Sie die Weiterbildung noch nicht abgeschlossen haben, reichen Sie dieses Formular bitte mit einer entsprechenden Unterschrift der/des Weiterbilder*in ein. Sie können auch die Erlangung des Schwerpunkttitels/Additivfachs damit anzeigen.</p></div></div></div><hr class="wp-block-separator has-alpha-channel-opacity mb-4"/><p></p><div class="wp-block-columns is-layout-flex wp-container-core-columns-layout-3 wp-block-columns-is-layout-flex"><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-MitteilungRuhestand-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-MitteilungRuhestand-Formular-pdf-724x1024.jpg" alt="" class="wp-image-734"/></a></figure><p></p><p class="has-small-font-size">Antrag auf Seniormitgliedschaft<br>Antragsformular zur Umwandlung einer ordentlichen in eine Senior-Mitgliedschaft (Ruhestandsmitteilung)</p></div><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:70%"><div class="wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-layout-3 wp-block-group-is-layout-constrained"><p>Wenn Sie in den Ruhestand wechseln können Sie das mit diesem Formular mitteilen, und gleichzeitig ggf. die Seniormitgliedschaft beantragen.</p></div></div></div>', array('<p class="has-secondary-color has-text-color has-large-font-size">Hier finden Sie alle aktuell gültigen Formulare zum Download:</p><ul><li>Antrag auf Änderung des Mitgliedstatus (ordentliches Mitglied zum Seniormitglied = Ruhestandsmitteilung)</li><li>Antrag auf Fortsetzung der Juniormitgliedschaft (nach 5 Jahren, bei fortbestehender Weiterbildung)</li></ul><p>Einen Mitgliedsantrag stellen Sie bitte nur noch online, nämlich <a href="https://easyverein.com/public/GNP/applicationform/" target="_blank" rel="noreferrer noopener">hier</a>.</p><p>Elternzeit beantragen Sie bitte formlos per Brief an die Geschäftsstelle, zusammen mit einer Kopie des offiziellen Genehmigungsschreibens Ihres Arbeitgebers.</p><h3 class="wp-block-heading has-secondary-color has-text-color">Formulare</h3><p></p><div class="wp-block-columns is-layout-flex wp-container-core-columns-layout-1 wp-block-columns-is-layout-flex"><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-AufnahmeAntrag-02-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-AufnahmeAntrag-02-Formular-pdf-724x1024.jpg" alt="" class="wp-image-731"/></a></figure><p></p><p class="has-small-font-size">Zusatzformular 2 zur Aufnahme<br>Antragsformular zur Anerkennung äquivalenter Weiterbildung</p></div><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:70%"><div class="wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-layout-1 wp-block-group-is-layout-constrained"><p>Falls Sie keinen Schwerpunkt bzw. das Additivfach Neuropädiatrie erworben, aber eine vergleichbare klinische Ausbildung durchaufen haben, können Sie dies mit diesem Formular belegen. Bitte laden Sie dieses Formular und die entsprechenden Nachweise mit dem Mitgliedsantrag im Mitgliederportal hoch.</p></div></div></div><hr class="wp-block-separator has-alpha-channel-opacity mb-4"/><p></p><div class="wp-block-columns is-layout-flex wp-container-core-columns-layout-2 wp-block-columns-is-layout-flex"><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-ErklaerungJuniormitgliedschaft-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-ErklaerungJuniormitgliedschaft-Formular-pdf-724x1024.jpg" alt="" class="wp-image-733"/></a></figure><p></p><p class="has-small-font-size">Erklärung zur Juniormitgliedschaft<br>Antragsformular zur Fortsetzung der Juniormitgliedschaft (&gt;5 Jahre)</p></div><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:70%"><div class="wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-layout-2 wp-block-group-is-layout-constrained"><p>Wenn Sie Ihre Juniormitgliedschaft zum Ablauf der durch die Satzung auf 5 Jahre beschränkten Frist verlängern wollen, weil Sie die Weiterbildung noch nicht abgeschlossen haben, reichen Sie dieses Formular bitte mit einer entsprechenden Unterschrift der/des Weiterbilder*in ein. Sie können auch die Erlangung des Schwerpunkttitels/Additivfachs damit anzeigen.</p></div></div></div><hr class="wp-block-separator has-alpha-channel-opacity mb-4"/><p></p><div class="wp-block-columns is-layout-flex wp-container-core-columns-layout-3 wp-block-columns-is-layout-flex"><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-MitteilungRuhestand-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-MitteilungRuhestand-Formular-pdf-724x1024.jpg" alt="" class="wp-image-734"/></a></figure><p></p><p class="has-small-font-size">Antrag auf Seniormitgliedschaft<br>Antragsformular zur Umwandlung einer ordentlichen in eine Senior-Mitgliedschaft (Ruhestandsmitteilung)</p></div><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:70%"><div class="wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-layout-3 wp-block-group-is-layout-constrained"><p>Wenn Sie in den Ruhestand wechseln können Sie das mit diesem Formular mitteilen, und gleichzeitig ggf. die Seniormitgliedschaft beantragen.</p></div></div></div>')) in /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/plugin.php (line 205)
  1.     }
  2.     // Pass the value to WP_Hook.
  3.     array_unshift$args$value );
  4.     $filtered $wp_filter$hook_name ]->apply_filters$value$args );
  5.     array_pop$wp_current_filter );
  6.     return $filtered;
  7. }
apply_filters('the_content', '<!-- wp:paragraph {"textColor":"secondary","fontSize":"large"} --><p class="has-secondary-color has-text-color has-large-font-size">Hier finden Sie alle aktuell gültigen Formulare zum Download:</p><!-- /wp:paragraph --><!-- wp:list --><ul><!-- wp:list-item --><li>Antrag auf Änderung des Mitgliedstatus (ordentliches Mitglied zum Seniormitglied = Ruhestandsmitteilung)</li><!-- /wp:list-item --><!-- wp:list-item --><li>Antrag auf Fortsetzung der Juniormitgliedschaft (nach 5 Jahren, bei fortbestehender Weiterbildung)</li><!-- /wp:list-item --></ul><!-- /wp:list --><!-- wp:paragraph --><p>Einen Mitgliedsantrag stellen Sie bitte nur noch online, nämlich <a href="https://easyverein.com/public/GNP/applicationform/" target="_blank" rel="noreferrer noopener">hier</a>.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>Elternzeit beantragen Sie bitte formlos per Brief an die Geschäftsstelle, zusammen mit einer Kopie des offiziellen Genehmigungsschreibens Ihres Arbeitgebers.</p><!-- /wp:paragraph --><!-- wp:heading {"level":3,"textColor":"secondary"} --><h3 class="wp-block-heading has-secondary-color has-text-color">Formulare</h3><!-- /wp:heading --><!-- wp:paragraph --><p></p><!-- /wp:paragraph --><!-- wp:columns --><div class="wp-block-columns"><!-- wp:column --><div class="wp-block-column"><!-- wp:image {"id":731,"sizeSlug":"large","linkDestination":"media"} --><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-AufnahmeAntrag-02-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-AufnahmeAntrag-02-Formular-pdf-724x1024.jpg" alt="" class="wp-image-731"/></a></figure><!-- /wp:image --><!-- wp:paragraph --><p></p><!-- /wp:paragraph --><!-- wp:paragraph {"fontSize":"small"} --><p class="has-small-font-size">Zusatzformular 2 zur Aufnahme<br>Antragsformular zur Anerkennung äquivalenter Weiterbildung</p><!-- /wp:paragraph --></div><!-- /wp:column --><!-- wp:column {"width":"70%"} --><div class="wp-block-column" style="flex-basis:70%"><!-- wp:group {"layout":{"type":"constrained","contentSize":"520px","justifyContent":"left"}} --><div class="wp-block-group"><!-- wp:paragraph --><p>Falls Sie keinen Schwerpunkt bzw. das Additivfach Neuropädiatrie erworben, aber eine vergleichbare klinische Ausbildung durchaufen haben, können Sie dies mit diesem Formular belegen. Bitte laden Sie dieses Formular und die entsprechenden Nachweise mit dem Mitgliedsantrag im Mitgliederportal hoch.</p><!-- /wp:paragraph --></div><!-- /wp:group --></div><!-- /wp:column --></div><!-- /wp:columns --><!-- wp:separator {"className":"mb-4"} --><hr class="wp-block-separator has-alpha-channel-opacity mb-4"/><!-- /wp:separator --><!-- wp:paragraph --><p></p><!-- /wp:paragraph --><!-- wp:columns --><div class="wp-block-columns"><!-- wp:column --><div class="wp-block-column"><!-- wp:image {"id":733,"sizeSlug":"large","linkDestination":"media"} --><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-ErklaerungJuniormitgliedschaft-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-ErklaerungJuniormitgliedschaft-Formular-pdf-724x1024.jpg" alt="" class="wp-image-733"/></a></figure><!-- /wp:image --><!-- wp:paragraph --><p></p><!-- /wp:paragraph --><!-- wp:paragraph {"fontSize":"small"} --><p class="has-small-font-size">Erklärung zur Juniormitgliedschaft<br>Antragsformular zur Fortsetzung der Juniormitgliedschaft (&gt;5 Jahre)</p><!-- /wp:paragraph --></div><!-- /wp:column --><!-- wp:column {"width":"70%"} --><div class="wp-block-column" style="flex-basis:70%"><!-- wp:group {"layout":{"type":"constrained","contentSize":"520px","justifyContent":"left"}} --><div class="wp-block-group"><!-- wp:paragraph --><p>Wenn Sie Ihre Juniormitgliedschaft zum Ablauf der durch die Satzung auf 5 Jahre beschränkten Frist verlängern wollen, weil Sie die Weiterbildung noch nicht abgeschlossen haben, reichen Sie dieses Formular bitte mit einer entsprechenden Unterschrift der/des Weiterbilder*in ein. Sie können auch die Erlangung des Schwerpunkttitels/Additivfachs damit anzeigen.</p><!-- /wp:paragraph --></div><!-- /wp:group --></div><!-- /wp:column --></div><!-- /wp:columns --><!-- wp:separator {"className":"mb-4"} --><hr class="wp-block-separator has-alpha-channel-opacity mb-4"/><!-- /wp:separator --><!-- wp:paragraph --><p></p><!-- /wp:paragraph --><!-- wp:columns --><div class="wp-block-columns"><!-- wp:column --><div class="wp-block-column"><!-- wp:image {"id":734,"sizeSlug":"large","linkDestination":"media"} --><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-MitteilungRuhestand-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-MitteilungRuhestand-Formular-pdf-724x1024.jpg" alt="" class="wp-image-734"/></a></figure><!-- /wp:image --><!-- wp:paragraph --><p></p><!-- /wp:paragraph --><!-- wp:paragraph {"fontSize":"small"} --><p class="has-small-font-size">Antrag auf Seniormitgliedschaft<br>Antragsformular zur Umwandlung einer ordentlichen in eine Senior-Mitgliedschaft (Ruhestandsmitteilung)</p><!-- /wp:paragraph --></div><!-- /wp:column --><!-- wp:column {"width":"70%"} --><div class="wp-block-column" style="flex-basis:70%"><!-- wp:group {"layout":{"type":"constrained","contentSize":"520px","justifyContent":"left"}} --><div class="wp-block-group"><!-- wp:paragraph --><p>Wenn Sie in den Ruhestand wechseln können Sie das mit diesem Formular mitteilen, und gleichzeitig ggf. die Seniormitgliedschaft beantragen.</p><!-- /wp:paragraph --></div><!-- /wp:group --></div><!-- /wp:column --></div><!-- /wp:columns -->') in /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/post-template.php (line 256)
  1.      *
  2.      * @since 0.71
  3.      *
  4.      * @param string $content Content of the current post.
  5.      */
  6.     $content apply_filters'the_content'$content );
  7.     $content str_replace']]>'']]&gt;'$content );
  8.     echo $content;
  9. }
  10. /**
  1. <?php (the_content()); ?>
  2. <?php echo wp_link_pages(['echo' => 0'before' => '<nav class="page-nav"><p>' __('Pages:''sage'), 'after' => '</p></nav>']); ?>
  3. <?php /**PATH /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/resources/views/partials/content-page.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1. <?php $__env->startSection('content'); ?>
  2.   <div class="main-inner">
  3.     <?php while(have_posts()): ?> <?php (the_post()); ?>
  4.       <?php echo $__env->make('partials.page-header'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  5.       <?php echo $__env->first(['partials.content-page''partials.content'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  6.     <?php endwhile; ?>
  7.   </div>
  8. <?php $__env->stopSection(); ?>
  9. <?php echo $__env->make('layouts.app'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/resources/views/page.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.   <body <?php body_class(); ?>>
  2.     <?php wp_body_open(); ?>
  3.     <?php do_action('get_header'); ?>
  4.     <div id="app">
  5.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  6.     </div>
  7.     <?php do_action('get_footer'); ?>
  8.     <?php wp_footer(); ?>
  9.   </body>
include('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/index.php') in /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/template-loader.php') in /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-blog-header.php') in /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/index.php (line 6)
  1. <?php
  2. /**
  3.  * WordPress View Bootstrapper
  4.  */
  5. define('WP_USE_THEMES'true);
  6. require __DIR__ '/wp/wp-blog-header.php';

Stack Traces 3

[3/3] ViewException
Illuminate\View\ViewException:
Undefined array key "file" (View: /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/resources/views/partials/content-page.blade.php) (View: /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/resources/views/partials/content-page.blade.php)

  at /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/media.php:1723
  at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ViewException), 1)
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/cache/acorn/framework/views/e5bb46f6d1f4d7d754d1edc8a835229053427d7f.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'Gesellschaft für Neuropädiatrie'))
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/resources/views/page.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'Gesellschaft für Neuropädiatrie'))
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/index.php:14)
  at include('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/index.php')
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/template-loader.php:106)
  at require_once('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/template-loader.php')
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-blog-header.php:19)
  at require('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-blog-header.php')
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/index.php:6)                
[2/3] ViewException
Illuminate\View\ViewException:
Undefined array key "file" (View: /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/resources/views/partials/content-page.blade.php)

  at /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/media.php:1723
  at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ErrorException), 3)
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/cache/acorn/framework/views/b9197c4bf5d563ad61ead26e89b3ffb353c3be42.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'Gesellschaft für Neuropädiatrie', 'title' => 'Formulare'))
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/resources/views/partials/content-page.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'Gesellschaft für Neuropädiatrie', 'title' => 'Formulare'))
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/cache/acorn/framework/views/e5bb46f6d1f4d7d754d1edc8a835229053427d7f.php:5)
  at require('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/cache/acorn/framework/views/e5bb46f6d1f4d7d754d1edc8a835229053427d7f.php')
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/cache/acorn/framework/views/e5bb46f6d1f4d7d754d1edc8a835229053427d7f.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'Gesellschaft für Neuropädiatrie'))
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/cache/acorn/framework/views/e5bb46f6d1f4d7d754d1edc8a835229053427d7f.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'Gesellschaft für Neuropädiatrie'))
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/resources/views/page.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'Gesellschaft für Neuropädiatrie'))
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/index.php:14)
  at include('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/index.php')
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/template-loader.php:106)
  at require_once('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/template-loader.php')
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-blog-header.php:19)
  at require('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-blog-header.php')
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/index.php:6)                
[1/3] ErrorException
ErrorException:
Undefined array key "file"

  at /www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/media.php:1723
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(2, 'Undefined array key "file"', '/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/media.php', 1723, array())
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/roots/acorn/src/Roots/Acorn/Bootstrap/HandleExceptions.php:49)
  at Roots\Acorn\Bootstrap\HandleExceptions->handleError(2, 'Undefined array key "file"', '/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/media.php', 1723)
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/media.php:1723)
  at wp_image_add_srcset_and_sizes('<img width="724" height="1024" src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-AufnahmeAntrag-02-Formular-pdf-724x1024.jpg" alt="" class="wp-image-731"/>', array('sizes' => array('full' => array('file' => '230929-GNP-AufnahmeAntrag-02-Formular-pdf.jpg', 'width' => 1058, 'height' => 1497, 'mime-type' => 'image/jpeg', 'filesize' => 278045), 'medium' => array('file' => '230929-GNP-AufnahmeAntrag-02-Formular-pdf-212x300.jpg', 'width' => 212, 'height' => 300, 'mime-type' => 'image/jpeg', 'filesize' => 74009), 'large' => array('file' => '230929-GNP-AufnahmeAntrag-02-Formular-pdf-724x1024.jpg', 'width' => 724, 'height' => 1024, 'mime-type' => 'image/jpeg', 'filesize' => 164946), 'thumbnail' => array('file' => '230929-GNP-AufnahmeAntrag-02-Formular-pdf-106x150.jpg', 'width' => 106, 'height' => 150, 'mime-type' => 'image/jpeg', 'filesize' => 64887)), 'filesize' => 817267), 731)
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/media.php:2155)
  at wp_img_tag_add_srcset_and_sizes_attr('<img width="724" height="1024" src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-AufnahmeAntrag-02-Formular-pdf-724x1024.jpg" alt="" class="wp-image-731"/>', 'the_content', 731)
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/media.php:1888)
  at wp_filter_content_tags('<p class="has-secondary-color has-text-color has-large-font-size">Hier finden Sie alle aktuell gültigen Formulare zum Download:</p><ul><li>Antrag auf Änderung des Mitgliedstatus (ordentliches Mitglied zum Seniormitglied = Ruhestandsmitteilung)</li><li>Antrag auf Fortsetzung der Juniormitgliedschaft (nach 5 Jahren, bei fortbestehender Weiterbildung)</li></ul><p>Einen Mitgliedsantrag stellen Sie bitte nur noch online, nämlich <a href="https://easyverein.com/public/GNP/applicationform/" target="_blank" rel="noreferrer noopener">hier</a>.</p><p>Elternzeit beantragen Sie bitte formlos per Brief an die Geschäftsstelle, zusammen mit einer Kopie des offiziellen Genehmigungsschreibens Ihres Arbeitgebers.</p><h3 class="wp-block-heading has-secondary-color has-text-color">Formulare</h3><p></p><div class="wp-block-columns is-layout-flex wp-container-core-columns-layout-1 wp-block-columns-is-layout-flex"><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-AufnahmeAntrag-02-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-AufnahmeAntrag-02-Formular-pdf-724x1024.jpg" alt="" class="wp-image-731"/></a></figure><p></p><p class="has-small-font-size">Zusatzformular 2 zur Aufnahme<br>Antragsformular zur Anerkennung äquivalenter Weiterbildung</p></div><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:70%"><div class="wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-layout-1 wp-block-group-is-layout-constrained"><p>Falls Sie keinen Schwerpunkt bzw. das Additivfach Neuropädiatrie erworben, aber eine vergleichbare klinische Ausbildung durchaufen haben, können Sie dies mit diesem Formular belegen. Bitte laden Sie dieses Formular und die entsprechenden Nachweise mit dem Mitgliedsantrag im Mitgliederportal hoch.</p></div></div></div><hr class="wp-block-separator has-alpha-channel-opacity mb-4"/><p></p><div class="wp-block-columns is-layout-flex wp-container-core-columns-layout-2 wp-block-columns-is-layout-flex"><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-ErklaerungJuniormitgliedschaft-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-ErklaerungJuniormitgliedschaft-Formular-pdf-724x1024.jpg" alt="" class="wp-image-733"/></a></figure><p></p><p class="has-small-font-size">Erklärung zur Juniormitgliedschaft<br>Antragsformular zur Fortsetzung der Juniormitgliedschaft (&gt;5 Jahre)</p></div><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:70%"><div class="wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-layout-2 wp-block-group-is-layout-constrained"><p>Wenn Sie Ihre Juniormitgliedschaft zum Ablauf der durch die Satzung auf 5 Jahre beschränkten Frist verlängern wollen, weil Sie die Weiterbildung noch nicht abgeschlossen haben, reichen Sie dieses Formular bitte mit einer entsprechenden Unterschrift der/des Weiterbilder*in ein. Sie können auch die Erlangung des Schwerpunkttitels/Additivfachs damit anzeigen.</p></div></div></div><hr class="wp-block-separator has-alpha-channel-opacity mb-4"/><p></p><div class="wp-block-columns is-layout-flex wp-container-core-columns-layout-3 wp-block-columns-is-layout-flex"><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-MitteilungRuhestand-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-MitteilungRuhestand-Formular-pdf-724x1024.jpg" alt="" class="wp-image-734"/></a></figure><p></p><p class="has-small-font-size">Antrag auf Seniormitgliedschaft<br>Antragsformular zur Umwandlung einer ordentlichen in eine Senior-Mitgliedschaft (Ruhestandsmitteilung)</p></div><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:70%"><div class="wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-layout-3 wp-block-group-is-layout-constrained"><p>Wenn Sie in den Ruhestand wechseln können Sie das mit diesem Formular mitteilen, und gleichzeitig ggf. die Seniormitgliedschaft beantragen.</p></div></div></div>')
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/class-wp-hook.php:324)
  at WP_Hook->apply_filters('<p class="has-secondary-color has-text-color has-large-font-size">Hier finden Sie alle aktuell gültigen Formulare zum Download:</p><ul><li>Antrag auf Änderung des Mitgliedstatus (ordentliches Mitglied zum Seniormitglied = Ruhestandsmitteilung)</li><li>Antrag auf Fortsetzung der Juniormitgliedschaft (nach 5 Jahren, bei fortbestehender Weiterbildung)</li></ul><p>Einen Mitgliedsantrag stellen Sie bitte nur noch online, nämlich <a href="https://easyverein.com/public/GNP/applicationform/" target="_blank" rel="noreferrer noopener">hier</a>.</p><p>Elternzeit beantragen Sie bitte formlos per Brief an die Geschäftsstelle, zusammen mit einer Kopie des offiziellen Genehmigungsschreibens Ihres Arbeitgebers.</p><h3 class="wp-block-heading has-secondary-color has-text-color">Formulare</h3><p></p><div class="wp-block-columns is-layout-flex wp-container-core-columns-layout-1 wp-block-columns-is-layout-flex"><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-AufnahmeAntrag-02-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-AufnahmeAntrag-02-Formular-pdf-724x1024.jpg" alt="" class="wp-image-731"/></a></figure><p></p><p class="has-small-font-size">Zusatzformular 2 zur Aufnahme<br>Antragsformular zur Anerkennung äquivalenter Weiterbildung</p></div><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:70%"><div class="wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-layout-1 wp-block-group-is-layout-constrained"><p>Falls Sie keinen Schwerpunkt bzw. das Additivfach Neuropädiatrie erworben, aber eine vergleichbare klinische Ausbildung durchaufen haben, können Sie dies mit diesem Formular belegen. Bitte laden Sie dieses Formular und die entsprechenden Nachweise mit dem Mitgliedsantrag im Mitgliederportal hoch.</p></div></div></div><hr class="wp-block-separator has-alpha-channel-opacity mb-4"/><p></p><div class="wp-block-columns is-layout-flex wp-container-core-columns-layout-2 wp-block-columns-is-layout-flex"><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-ErklaerungJuniormitgliedschaft-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-ErklaerungJuniormitgliedschaft-Formular-pdf-724x1024.jpg" alt="" class="wp-image-733"/></a></figure><p></p><p class="has-small-font-size">Erklärung zur Juniormitgliedschaft<br>Antragsformular zur Fortsetzung der Juniormitgliedschaft (&gt;5 Jahre)</p></div><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:70%"><div class="wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-layout-2 wp-block-group-is-layout-constrained"><p>Wenn Sie Ihre Juniormitgliedschaft zum Ablauf der durch die Satzung auf 5 Jahre beschränkten Frist verlängern wollen, weil Sie die Weiterbildung noch nicht abgeschlossen haben, reichen Sie dieses Formular bitte mit einer entsprechenden Unterschrift der/des Weiterbilder*in ein. Sie können auch die Erlangung des Schwerpunkttitels/Additivfachs damit anzeigen.</p></div></div></div><hr class="wp-block-separator has-alpha-channel-opacity mb-4"/><p></p><div class="wp-block-columns is-layout-flex wp-container-core-columns-layout-3 wp-block-columns-is-layout-flex"><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-MitteilungRuhestand-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-MitteilungRuhestand-Formular-pdf-724x1024.jpg" alt="" class="wp-image-734"/></a></figure><p></p><p class="has-small-font-size">Antrag auf Seniormitgliedschaft<br>Antragsformular zur Umwandlung einer ordentlichen in eine Senior-Mitgliedschaft (Ruhestandsmitteilung)</p></div><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:70%"><div class="wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-layout-3 wp-block-group-is-layout-constrained"><p>Wenn Sie in den Ruhestand wechseln können Sie das mit diesem Formular mitteilen, und gleichzeitig ggf. die Seniormitgliedschaft beantragen.</p></div></div></div>', array('<p class="has-secondary-color has-text-color has-large-font-size">Hier finden Sie alle aktuell gültigen Formulare zum Download:</p><ul><li>Antrag auf Änderung des Mitgliedstatus (ordentliches Mitglied zum Seniormitglied = Ruhestandsmitteilung)</li><li>Antrag auf Fortsetzung der Juniormitgliedschaft (nach 5 Jahren, bei fortbestehender Weiterbildung)</li></ul><p>Einen Mitgliedsantrag stellen Sie bitte nur noch online, nämlich <a href="https://easyverein.com/public/GNP/applicationform/" target="_blank" rel="noreferrer noopener">hier</a>.</p><p>Elternzeit beantragen Sie bitte formlos per Brief an die Geschäftsstelle, zusammen mit einer Kopie des offiziellen Genehmigungsschreibens Ihres Arbeitgebers.</p><h3 class="wp-block-heading has-secondary-color has-text-color">Formulare</h3><p></p><div class="wp-block-columns is-layout-flex wp-container-core-columns-layout-1 wp-block-columns-is-layout-flex"><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-AufnahmeAntrag-02-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-AufnahmeAntrag-02-Formular-pdf-724x1024.jpg" alt="" class="wp-image-731"/></a></figure><p></p><p class="has-small-font-size">Zusatzformular 2 zur Aufnahme<br>Antragsformular zur Anerkennung äquivalenter Weiterbildung</p></div><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:70%"><div class="wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-layout-1 wp-block-group-is-layout-constrained"><p>Falls Sie keinen Schwerpunkt bzw. das Additivfach Neuropädiatrie erworben, aber eine vergleichbare klinische Ausbildung durchaufen haben, können Sie dies mit diesem Formular belegen. Bitte laden Sie dieses Formular und die entsprechenden Nachweise mit dem Mitgliedsantrag im Mitgliederportal hoch.</p></div></div></div><hr class="wp-block-separator has-alpha-channel-opacity mb-4"/><p></p><div class="wp-block-columns is-layout-flex wp-container-core-columns-layout-2 wp-block-columns-is-layout-flex"><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-ErklaerungJuniormitgliedschaft-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-ErklaerungJuniormitgliedschaft-Formular-pdf-724x1024.jpg" alt="" class="wp-image-733"/></a></figure><p></p><p class="has-small-font-size">Erklärung zur Juniormitgliedschaft<br>Antragsformular zur Fortsetzung der Juniormitgliedschaft (&gt;5 Jahre)</p></div><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:70%"><div class="wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-layout-2 wp-block-group-is-layout-constrained"><p>Wenn Sie Ihre Juniormitgliedschaft zum Ablauf der durch die Satzung auf 5 Jahre beschränkten Frist verlängern wollen, weil Sie die Weiterbildung noch nicht abgeschlossen haben, reichen Sie dieses Formular bitte mit einer entsprechenden Unterschrift der/des Weiterbilder*in ein. Sie können auch die Erlangung des Schwerpunkttitels/Additivfachs damit anzeigen.</p></div></div></div><hr class="wp-block-separator has-alpha-channel-opacity mb-4"/><p></p><div class="wp-block-columns is-layout-flex wp-container-core-columns-layout-3 wp-block-columns-is-layout-flex"><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-MitteilungRuhestand-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-MitteilungRuhestand-Formular-pdf-724x1024.jpg" alt="" class="wp-image-734"/></a></figure><p></p><p class="has-small-font-size">Antrag auf Seniormitgliedschaft<br>Antragsformular zur Umwandlung einer ordentlichen in eine Senior-Mitgliedschaft (Ruhestandsmitteilung)</p></div><div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:70%"><div class="wp-block-group is-content-justification-left is-layout-constrained wp-container-core-group-layout-3 wp-block-group-is-layout-constrained"><p>Wenn Sie in den Ruhestand wechseln können Sie das mit diesem Formular mitteilen, und gleichzeitig ggf. die Seniormitgliedschaft beantragen.</p></div></div></div>'))
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/plugin.php:205)
  at apply_filters('the_content', '<!-- wp:paragraph {"textColor":"secondary","fontSize":"large"} --><p class="has-secondary-color has-text-color has-large-font-size">Hier finden Sie alle aktuell gültigen Formulare zum Download:</p><!-- /wp:paragraph --><!-- wp:list --><ul><!-- wp:list-item --><li>Antrag auf Änderung des Mitgliedstatus (ordentliches Mitglied zum Seniormitglied = Ruhestandsmitteilung)</li><!-- /wp:list-item --><!-- wp:list-item --><li>Antrag auf Fortsetzung der Juniormitgliedschaft (nach 5 Jahren, bei fortbestehender Weiterbildung)</li><!-- /wp:list-item --></ul><!-- /wp:list --><!-- wp:paragraph --><p>Einen Mitgliedsantrag stellen Sie bitte nur noch online, nämlich <a href="https://easyverein.com/public/GNP/applicationform/" target="_blank" rel="noreferrer noopener">hier</a>.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>Elternzeit beantragen Sie bitte formlos per Brief an die Geschäftsstelle, zusammen mit einer Kopie des offiziellen Genehmigungsschreibens Ihres Arbeitgebers.</p><!-- /wp:paragraph --><!-- wp:heading {"level":3,"textColor":"secondary"} --><h3 class="wp-block-heading has-secondary-color has-text-color">Formulare</h3><!-- /wp:heading --><!-- wp:paragraph --><p></p><!-- /wp:paragraph --><!-- wp:columns --><div class="wp-block-columns"><!-- wp:column --><div class="wp-block-column"><!-- wp:image {"id":731,"sizeSlug":"large","linkDestination":"media"} --><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-AufnahmeAntrag-02-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-AufnahmeAntrag-02-Formular-pdf-724x1024.jpg" alt="" class="wp-image-731"/></a></figure><!-- /wp:image --><!-- wp:paragraph --><p></p><!-- /wp:paragraph --><!-- wp:paragraph {"fontSize":"small"} --><p class="has-small-font-size">Zusatzformular 2 zur Aufnahme<br>Antragsformular zur Anerkennung äquivalenter Weiterbildung</p><!-- /wp:paragraph --></div><!-- /wp:column --><!-- wp:column {"width":"70%"} --><div class="wp-block-column" style="flex-basis:70%"><!-- wp:group {"layout":{"type":"constrained","contentSize":"520px","justifyContent":"left"}} --><div class="wp-block-group"><!-- wp:paragraph --><p>Falls Sie keinen Schwerpunkt bzw. das Additivfach Neuropädiatrie erworben, aber eine vergleichbare klinische Ausbildung durchaufen haben, können Sie dies mit diesem Formular belegen. Bitte laden Sie dieses Formular und die entsprechenden Nachweise mit dem Mitgliedsantrag im Mitgliederportal hoch.</p><!-- /wp:paragraph --></div><!-- /wp:group --></div><!-- /wp:column --></div><!-- /wp:columns --><!-- wp:separator {"className":"mb-4"} --><hr class="wp-block-separator has-alpha-channel-opacity mb-4"/><!-- /wp:separator --><!-- wp:paragraph --><p></p><!-- /wp:paragraph --><!-- wp:columns --><div class="wp-block-columns"><!-- wp:column --><div class="wp-block-column"><!-- wp:image {"id":733,"sizeSlug":"large","linkDestination":"media"} --><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-ErklaerungJuniormitgliedschaft-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-ErklaerungJuniormitgliedschaft-Formular-pdf-724x1024.jpg" alt="" class="wp-image-733"/></a></figure><!-- /wp:image --><!-- wp:paragraph --><p></p><!-- /wp:paragraph --><!-- wp:paragraph {"fontSize":"small"} --><p class="has-small-font-size">Erklärung zur Juniormitgliedschaft<br>Antragsformular zur Fortsetzung der Juniormitgliedschaft (&gt;5 Jahre)</p><!-- /wp:paragraph --></div><!-- /wp:column --><!-- wp:column {"width":"70%"} --><div class="wp-block-column" style="flex-basis:70%"><!-- wp:group {"layout":{"type":"constrained","contentSize":"520px","justifyContent":"left"}} --><div class="wp-block-group"><!-- wp:paragraph --><p>Wenn Sie Ihre Juniormitgliedschaft zum Ablauf der durch die Satzung auf 5 Jahre beschränkten Frist verlängern wollen, weil Sie die Weiterbildung noch nicht abgeschlossen haben, reichen Sie dieses Formular bitte mit einer entsprechenden Unterschrift der/des Weiterbilder*in ein. Sie können auch die Erlangung des Schwerpunkttitels/Additivfachs damit anzeigen.</p><!-- /wp:paragraph --></div><!-- /wp:group --></div><!-- /wp:column --></div><!-- /wp:columns --><!-- wp:separator {"className":"mb-4"} --><hr class="wp-block-separator has-alpha-channel-opacity mb-4"/><!-- /wp:separator --><!-- wp:paragraph --><p></p><!-- /wp:paragraph --><!-- wp:columns --><div class="wp-block-columns"><!-- wp:column --><div class="wp-block-column"><!-- wp:image {"id":734,"sizeSlug":"large","linkDestination":"media"} --><figure class="wp-block-image size-large"><a href="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-MitteilungRuhestand-Formular.pdf"><img src="https://gesellschaft-fuer-neuropaediatrie.org/app/uploads/2023/11/230929-GNP-MitteilungRuhestand-Formular-pdf-724x1024.jpg" alt="" class="wp-image-734"/></a></figure><!-- /wp:image --><!-- wp:paragraph --><p></p><!-- /wp:paragraph --><!-- wp:paragraph {"fontSize":"small"} --><p class="has-small-font-size">Antrag auf Seniormitgliedschaft<br>Antragsformular zur Umwandlung einer ordentlichen in eine Senior-Mitgliedschaft (Ruhestandsmitteilung)</p><!-- /wp:paragraph --></div><!-- /wp:column --><!-- wp:column {"width":"70%"} --><div class="wp-block-column" style="flex-basis:70%"><!-- wp:group {"layout":{"type":"constrained","contentSize":"520px","justifyContent":"left"}} --><div class="wp-block-group"><!-- wp:paragraph --><p>Wenn Sie in den Ruhestand wechseln können Sie das mit diesem Formular mitteilen, und gleichzeitig ggf. die Seniormitgliedschaft beantragen.</p><!-- /wp:paragraph --></div><!-- /wp:group --></div><!-- /wp:column --></div><!-- /wp:columns -->')
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/post-template.php:256)
  at the_content()
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/cache/acorn/framework/views/b9197c4bf5d563ad61ead26e89b3ffb353c3be42.php:1)
  at require('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/cache/acorn/framework/views/b9197c4bf5d563ad61ead26e89b3ffb353c3be42.php')
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/cache/acorn/framework/views/b9197c4bf5d563ad61ead26e89b3ffb353c3be42.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'Gesellschaft für Neuropädiatrie', 'title' => 'Formulare'))
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/cache/acorn/framework/views/b9197c4bf5d563ad61ead26e89b3ffb353c3be42.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'Gesellschaft für Neuropädiatrie', 'title' => 'Formulare'))
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/resources/views/partials/content-page.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'Gesellschaft für Neuropädiatrie', 'title' => 'Formulare'))
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/cache/acorn/framework/views/e5bb46f6d1f4d7d754d1edc8a835229053427d7f.php:5)
  at require('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/cache/acorn/framework/views/e5bb46f6d1f4d7d754d1edc8a835229053427d7f.php')
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/filesystem/Filesystem.php:109)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/filesystem/Filesystem.php:110)
  at Illuminate\Filesystem\Filesystem->getRequire('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/cache/acorn/framework/views/e5bb46f6d1f4d7d754d1edc8a835229053427d7f.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'Gesellschaft für Neuropädiatrie'))
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/cache/acorn/framework/views/e5bb46f6d1f4d7d754d1edc8a835229053427d7f.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'Gesellschaft für Neuropädiatrie'))
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/Engines/CompilerEngine.php:70)
  at Illuminate\View\Engines\CompilerEngine->get('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/resources/views/page.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'siteName' => 'Gesellschaft für Neuropädiatrie'))
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/View.php:195)
  at Illuminate\View\View->getContents()
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/View.php:178)
  at Illuminate\View\View->renderContents()
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/vendor/illuminate/view/View.php:147)
  at Illuminate\View\View->render()
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/index.php:14)
  at include('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/app/themes/gnp/index.php')
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/template-loader.php:106)
  at require_once('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-includes/template-loader.php')
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-blog-header.php:19)
  at require('/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/wp/wp-blog-header.php')
     (/www/htdocs/w01e1075/gesellschaft-fuer-neuropaediatrie.org/bedrock/web/index.php:6)