| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/robotics/wp-content/plugins/types/application/data/dashboard/table/ |
Upload File : |
<?php
return array(
/* Post Type with has_archive = false */
'no-archive-support' => array(
'type' => 'archive',
'priority' => 'important',
'conditions'=> array(
'Types_Helper_Condition_Archive_No_Support'
),
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'The archive is disabled for this post type.', 'types' )
),
array(
'type' => 'paragraph',
'content' => __( 'To enable, go to <a href="%POST-TYPE-EDIT-HAS-ARCHIVE%">Options</a> and mark "has_archive".', 'types' )
),
),
),
/* No Views, No Layouts, Archive missing */
'archive-missing' => array(
'type' => 'archive',
'priority' => 'important',
'conditions'=> array(
'Types_Helper_Condition_Layouts_Missing',
'Types_Helper_Condition_Views_Missing',
'Types_Helper_Condition_Archive_Missing'
),
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'Your theme is missing the standard WordPress archive for %POST-LABEL-PLURAL%.', 'types' )
),
array(
'type' => 'dialog',
'class' => 'button',
'label' => __( 'Create archive', 'types' ),
'dialog' => array(
'id' => 'resolve-no-archive',
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'Toolset plugins let you design archive pages without writing PHP. Your archives will include all
the fields that you need and your design.', 'types' )
),
array(
'type' => 'link',
'class' => 'button-primary types-button',
'external' => true,
'label' => __( 'Learn about creating archives with Toolset', 'types' ),
'target' => Types_Helper_Url::get_url( 'creating-archives-with-toolset', 'popup' ),
),
)
)
)
),
),
/* No Views, No Layouts, Archive without Fields */
'archive-fields-missing' => array(
'type' => 'archive',
'priority' => 'important',
'conditions'=> array(
'Types_Helper_Condition_Layouts_Missing',
'Types_Helper_Condition_Views_Missing',
'Types_Helper_Condition_Archive_No_Fields',
),
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'The %POST-LABEL-PLURAL% archive of your theme is missing custom fields.', 'types' )
),
array(
'type' => 'dialog',
'class' => 'button',
'label' => __( 'Resolve', 'types' ),
'dialog' => array(
'id' => 'resolve-no-custom-fields',
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'Toolset plugins let you design archives with custom fields, without writing PHP.', 'types' )
),
array(
'type' => 'link',
'class' => 'button-primary types-button',
'external' => true,
'label' => __( 'Learn about creating archives with Toolset', 'types' ),
'target' => Types_Helper_Url::get_url( 'creating-archives-with-toolset', 'popup' ),
),
)
)
)
),
),
/* No Views, No Layouts, Archive Fields */
'archive-fields' => array(
'type' => 'archive',
'conditions'=> array(
'Types_Helper_Condition_Layouts_Missing',
'Types_Helper_Condition_Views_Missing',
'Types_Helper_Condition_Archive_Has_Fields',
),
'description' => array(
array(
'type' => 'paragraph',
'content' => __( '%POST-ARCHIVE-FILE%', 'types' )
),
),
),
/* Views, template missing */
'views-archive-missing' => array(
'type' => 'archive',
'priority' => 'important',
'conditions'=> array(
'Types_Helper_Condition_Layouts_Missing',
'Types_Helper_Condition_Views_Archive_Missing'
),
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'There is no WordPress Archive for %POST-LABEL-PLURAL%.', 'types' )
),
array(
'type' => 'link',
'class' => 'button',
'target' => '%POST-CREATE-VIEWS-ARCHIVE%',
'label' => __( 'Create archive', 'types' )
)
),
),
/* Views, archive */
'views-archive' => array(
'type' => 'archive',
'conditions'=> array(
'Types_Helper_Condition_Layouts_Missing',
'Types_Helper_Condition_Views_Archive_Exists'
),
'description' => array(
array(
'type' => 'link',
'label' => '%POST-VIEWS-ARCHIVE%',
'target' => '%POST-EDIT-VIEWS-ARCHIVE%',
)
),
),
/* Layouts, Archive missing */
'layouts-archive-missing' => array(
'type' => 'archive',
'priority' => 'important',
'conditions'=> array(
'Types_Helper_Condition_Layouts_Active',
'Types_Helper_Condition_Layouts_Archive_Missing'
),
'description' => array(
array(
'type' => 'paragraph',
'content' => __( 'There is no layout for the %POST-LABEL-PLURAL% archive.', 'types' )
),
array(
'type' => 'link',
'class' => 'button',
'label' => __( 'Create archive', 'types' ),
'target' => '%POST-CREATE-LAYOUT-ARCHIVE%',
)
),
),
/* Layouts, Archive */
'layouts-archive' => array(
'type' => 'archive',
'conditions'=> array(
'Types_Helper_Condition_Layouts_Active',
'Types_Helper_Condition_Layouts_Archive_Exists'
),
'description' => array(
array(
'type' => 'link',
'label' => '%POST-LAYOUT-ARCHIVE%',
'target' => '%POST-EDIT-LAYOUT-ARCHIVE%',
)
),
)
);