HEX
Server: Apache
System: Linux webd004.cluster130.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User: frenchy (106757)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/frenchy/www/_trash/wp-content/plugins/advanced-forms/acf/fields/divider.php
<?php

if( ! class_exists('AF_Divider_Field') ) :

/**
 * Custom private ACF field used for picking a form field.
 *
 * @since 1.3.2
 *
 */
class AF_Divider_Field extends acf_field {
  
  
  /**
   * Set up field defaults
   *
   * @since 1.3.4
   *
   */
  function __construct() {
    
    // vars
    $this->name = 'divider';
    $this->label = _x('Divider', 'noun', 'acf');
    $this->public = false;
    $this->defaults = array();
    
    // do not delete!
    parent::__construct();
      
  }
  
  
  /**
   * Render interface for field
   *
   * @since 1.3.4
   *
   */
  function render_field( $field ) {
    
  }
  
}


// initialize
acf_register_field_type( new AF_Divider_Field() );

endif; // class_exists check

?>