HEX
Server: Apache
System: Linux cpanelx.inxs.ro 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: crowdandsafety (1041)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //proc/self/cwd/wp-content/plugins/cornerstone/includes/elements/classic/block-grid/controls.php
<?php

/**
 * Element Controls: Block Grid
 */

return array(

	'elements' => array(
		'type' => 'sortable',
		'ui' => array(
			'title' => __( 'Block Grid Items', 'cornerstone' ),
      'tooltip' =>__( 'Add a new item to your Block Grid.', 'cornerstone' ),
    ),
		'options' => array(
      'add_label' => __( 'Item', 'cornerstone' ),
			'element'   => 'block-grid-item',
			'newTitle'  => __( 'Block Grid Item %s', 'cornerstone' ),
			'floor'     => 2,
		),
		'context' => 'content',
		'suggest' => array(
	    array( 'title' => __( 'Block Grid Item 1', 'cornerstone' ) ),
      array( 'title' => __( 'Block Grid Item 2', 'cornerstone' ) )
	  )

	),

	'type' => array(
		'type' => 'select',
		'ui'   => array(
			'title'   => __( 'Columns', 'cornerstone' ),
			'tooltip' => __( 'Select how many columns of items should be displayed on larger screens. These will update responsively based on screen size.', 'cornerstone' ),
		),
		'options' => array(
			'choices' => array(
				array( 'value' => 'two-up',   'label' => __( '2', 'cornerstone' ) ),
				array( 'value' => 'three-up', 'label' => __( '3', 'cornerstone' ) ),
				array( 'value' => 'four-up',  'label' => __( '4', 'cornerstone' ) )
	    )
		)
	),

);