????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.217.84 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.astacus.se/wp-content/plugins/cornerstone/includes/settings/general/ |
Upload File : |
<?php
return array(
'custom_css' => array(
'type' => 'code-editor',
'options' => array(
'settings' => array(
'label' => __( 'Custom CSS', 'cornerstone' ),
'mode' => 'css'
)
)
),
'custom_js' => array(
'type' => 'code-editor',
'options' => array(
'settings' => array(
//'label' => __( 'Custom Javascript', 'cornerstone' ),
'mode' => 'javascript',
'lint' => true
)
)
),
'post_title' => array(
'type' => 'text',
'ui' => array(
'title' => __( 'Title', 'cornerstone' ),
'tooltip' => __( 'Shortcut for changing the title from within Cornerstone.', 'cornerstone' ),
),
'options' => array(
'notLive' => 'settings-wp-changed'
)
),
'post_status' => array(
'type' => 'select',
'ui' => array(
'title' => __( 'Status', 'cornerstone' )
),
'options' => array(
'notLive' => 'settings-wp-changed',
'choices' => $definition->post_status_choices()
)
),
'allow_comments' => array(
'type' => 'toggle',
'ui' => array(
'title' => __( 'Allow Comments', 'cornerstone' ),
'tooltip' => __( 'Opens or closes comments. Note: The comment form may not be shown if your chosen page template doesn&apost support them.', 'cornerstone' ),
),
'options' => array(
'notLive' => 'settings-wp-changed',
)
),
'manual_excerpt' => array(
'type' => 'textarea',
'ui' => array(
'title' => __( 'Manual Excerpt', 'cornerstone' ),
),
'options' => array(
'placeholder' => __( '(Optional) Cornerstone will derive an excerpt from any paragraphs in your content. You can override this by crafting your own excerpt here, or in the WordPress post editor.', 'cornerstone' )
)
),
'post_parent' => array(
'type' => 'wpselect',
'ui' => array(
'title' => __( 'Parent Page', 'cornerstone' )
),
'options' => array(
'notLive' => 'settings-wp-changed',
'markup' => $definition->post_parent_markup()
)
),
'page_template' => array(
'type' => 'select',
'ui' => array(
'title' => __( 'Page Template', 'cornerstone' )
),
'options' => array(
'notLive' => 'settings-wp-changed',
'choices' => $definition->page_template_choices()
)
)
);