Warning: You are browsing the documentation for PrestaShop 1.7, which is outdated.

You might want to read an updated version of this page for the current version, PrestaShop 8. Read the updated version of this page

Learn how to upgrade to the latest version.

IpAddressType

Extends TextType with additional button which inserts current device ip address to input.

Type options

None.

Required Javascript components

Component Description
../admin-dev/themes/new-theme/js/maintenance-page/ip-input.js Inserts current device ip address to input.

Code example

<?php
// path/to/your/CustomType.php

use PrestaShopBundle\Form\Admin\Type\IpAddressType;

class CustomType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add(
                'my_ip',
                IpAddressType::class
            )
        ;
    }
}

Then in Javascript you have to enable IpInput component.


import IpInput from 'admin-dev/themes/new-theme/js/maintenance-page/ip-input';

// initialize the component
IpInput.init();

Preview example

IpAddressType rendered in form example