Seditio Source
Root |
./othercms/ips_4.3.4/system/Helpers/Form/Sort.php
<?php
/**
 * @brief        Sort items input class for Form Builder
 * @author        <a href='https://www.invisioncommunity.com'>Invision Power Services, Inc.</a>
 * @copyright    (c) Invision Power Services, Inc.
 * @license        https://www.invisioncommunity.com/legal/standards/
 * @package        Invision Community
 * @since        14 Oct 2016
 */

namespace IPS\Helpers\Form;

/* To prevent PHP errors (extending class does not exist) revealing path */
if ( !defined( '\IPS\SUITE_UNIQUE_KEY' ) )
{
   
header( ( isset( $_SERVER['SERVER_PROTOCOL'] ) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.0' ) . ' 403 Forbidden' );
    exit;
}

/**
 * Sort items input class for Form Builder
 */
class _Sort extends FormAbstract
{
   
/**
     * Constructor
     *
     * @see        \IPS\Helpers\Form\FormAbstract::__construct
     * @param    string            $name                    Name
     * @param    mixed            $defaultValue            Default value
     * @param    bool            $required                Required?
     * @param    array            $options                Type-specific options
     * @param    callback        $customValidationCode    Custom validation code
     * @param    string            $prefix                    HTML to show before input field
     * @param    string            $suffix                    HTML to show after input field
     * @param    string            $id                        The ID to add to the row
     * @return    void
     */
   
public function __construct( $name, $defaultValue=NULL, $required=FALSE, $options=array(), $customValidationCode=NULL, $prefix=NULL, $suffix=NULL, $id=NULL )
    {    
       
call_user_func_array( 'parent::__construct', func_get_args() );
       
        \
IPS\Output::i()->jsFiles = array_merge( \IPS\Output::i()->jsFiles, \IPS\Output::i()->js( 'jquery/jquery-ui.js', 'core', 'interface' ) );
        \
IPS\Output::i()->jsFiles = array_merge( \IPS\Output::i()->jsFiles, \IPS\Output::i()->js( 'jquery/jquery-touchpunch.js', 'core', 'interface' ) );
        \
IPS\Output::i()->jsFiles = array_merge( \IPS\Output::i()->jsFiles, \IPS\Output::i()->js( 'jquery/jquery.menuaim.js', 'core', 'interface' ) );
    }

   
/**
     * Get HTML
     *
     * @return    string
     */
   
public function html()
    {
        return \
IPS\Theme::i()->getTemplate( 'forms', 'core', 'global' )->sort( $this->name, $this->value );
    }
       
   
/**
     * Validate
     *
     * @throws    \InvalidArgumentException
     * @return    TRUE
     */
   
public function validate()
    {
        if (
array_diff( array_keys( $this->value ), array_keys( $this->defaultValue ) ) or array_diff( array_keys( $this->defaultValue ), array_keys( $this->value ) ) )
        {
            throw new \
DomainException('form_bad_value');
        }

       
parent::validate();
    }
}