PageRenderTime 46ms CodeModel.GetById 15ms RepoModel.GetById 1ms app.codeStats 0ms

/config/config_page_post.php

https://github.com/pagelines/iBlogPro4
PHP | 128 lines | 120 code | 8 blank | 0 comment | 0 complexity | 77f28c7961e9961e4d2adfd34bf90697 MD5 | raw file
  1. <?php
  2. function get_edit_page_post_array(){
  3. return array(
  4. 'the_sidebar' => array(
  5. 'version' => 'pro',
  6. 'type' => 'select',
  7. 'selectvalues'=> array(
  8. 'default'=> 'Default Sidebar',
  9. 'accordion' => 'Accordion Sidebar',
  10. 'dragdrop' => 'Drag and Drop Sidebar'
  11. ),
  12. 'inputlabel' => 'Select Sidebar (optional)',
  13. 'exp' => 'Select the widgetized sidebar you would like to show on this page. Only applies to page templates with sidebars. '
  14. ),
  15. 'sidebar_layout' => array(
  16. 'version' => 'free',
  17. 'type' => 'select',
  18. 'selectvalues'=> array(
  19. 'default'=> 'Right',
  20. 'left' => 'Left'
  21. ),
  22. 'inputlabel' => 'Sidebar Side (optional - default right)',
  23. 'exp' => 'Select the side of the page you would like the sidebar to show up (this page only - defaults to right).'
  24. ),
  25. 'lower_sidebar' => array(
  26. 'version' => 'pro',
  27. 'type' => 'check',
  28. 'inputlabel' => 'Show Lower Sidebar on this page/post',
  29. 'exp' => 'Shows up underneath other sidebar content.'
  30. ),
  31. 'content_sidebar' => array(
  32. 'version' => 'pro',
  33. 'type' => 'check',
  34. 'inputlabel' => 'Show Content Sidebar',
  35. 'exp' => 'Shows Content Sidebar on this page'
  36. ),
  37. 'colorscheme' => array(
  38. 'version' => 'pro',
  39. 'type' => 'select',
  40. 'selectvalues' => array(
  41. 'grey' => 'Grey',
  42. 'black'=>'Black',
  43. 'blue' => 'Blue',
  44. ),
  45. 'title' => 'Page/Post Color Scheme',
  46. 'shortexp' => 'Choose the color scheme for this page/post.',
  47. 'inputlabel' => 'Page Color Scheme',
  48. 'exp' => 'Optionally select a color scheme for this page.'
  49. ),
  50. 'full_width_widget' => array(
  51. 'version' => 'pro',
  52. 'type' => 'check',
  53. 'inputlabel' => 'Show Full Width Sidebar area at bottom of page/post',
  54. 'exp' => 'Shows Full Width Content Area on this page/post'
  55. ),
  56. 'hide_bottom_sidebars' => array(
  57. 'version' => 'pro',
  58. 'type' => 'check',
  59. 'inputlabel' => 'Hide widgetized columns on top of footer',
  60. 'exp' => 'Hides the three widgetized areas that lie above the footer on this page/post.'
  61. ),
  62. 'featureboxes' => array(
  63. 'version' => 'pro',
  64. 'type' => 'check',
  65. 'where' => 'page',
  66. 'inputlabel' => 'Show feature boxes (from feature setup) on this page. ',
  67. 'exp' => 'This shows the feature boxes from feature setup on top of this page template.'
  68. ),
  69. 'carousel_items' => array(
  70. 'version' => 'pro',
  71. 'where' => 'page',
  72. 'type' => 'text',
  73. 'inputlabel' => 'Max Carousel Items (Carousel Page Template)',
  74. 'exp' => 'The number of items/thumbnails to show in the carousel.'
  75. ),
  76. 'carousel_mode' => array(
  77. 'version' => 'pro',
  78. 'where' => 'page',
  79. 'type' => 'select',
  80. 'selectvalues'=> array(
  81. 'flickr'=> 'Flickr (default)',
  82. 'posts' => 'Post Thumbnails',
  83. 'ngen_gallery' => 'NextGen Gallery'
  84. ),
  85. 'inputlabel' => 'Carousel Image/Link Mode (Carousel Page Template)',
  86. 'exp' => 'Select the mode that the carousel should use for its thumbnails.<br/><br/>' .
  87. '<strong>Flickr</strong> - (default) Uses thumbs from FlickrRSS plugin.<br/><strong> Post Thumbnails</strong> - Uses links and thumbnails from posts <br/>' .
  88. '<strong>NextGen Gallery</strong> - Uses an image gallery from the NextGen Gallery Plugin'
  89. ),
  90. 'carousel_ngen_gallery' => array(
  91. 'version' => 'pro',
  92. 'where' => 'page',
  93. 'type' => 'text',
  94. 'inputlabel' => 'NextGen Gallery ID For Carousel (Carousel Page Template / NextGen Mode)',
  95. 'exp' => 'Enter the ID of the NextGen Image gallery for the carousel. <strong>The NextGen Gallery and carousel template must be selected.</strong>'
  96. ),
  97. 'featuretitle' => array(
  98. 'version' => 'pro',
  99. 'where' => 'page',
  100. 'type' => 'textarea',
  101. 'inputlabel' => 'Highlight Title (Highlight Page Template)',
  102. 'exp' => 'The title in the highlight section of the highlight page (preformatted inside an H1 tag).'
  103. ),
  104. 'featuretext' => array(
  105. 'version' => 'pro',
  106. 'where' => 'page',
  107. 'type' => 'textarea',
  108. 'inputlabel' => 'Highlight Text (Highlight Page Template)',
  109. 'exp' => 'The description text for your highlight page (use HTML to format).'
  110. ),
  111. 'featuremedia' => array(
  112. 'version' => 'pro',
  113. 'where' => 'page',
  114. 'type' => 'textarea',
  115. 'inputlabel' => 'Highlight Media (Highlight Page Template)',
  116. 'exp' => 'Highlight Page Media HTML or Embed Code.<br/> Media width: '.HMEDIAWIDTH
  117. )
  118. );
  119. }
  120. ?>