PluginProbe
Vimeography: Vimeo Video Gallery WordPress Plugin / 2.2
Vimeography: Vimeo Video Gallery WordPress Plugin v2.2
2.4.9 2.4.8 trunk 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 0.6 0.6.1 0.6.2 0.6.3 0.6.4 0.6.5 0.6.6 0.6.7 0.6.8 0.6.8.1 0.6.9 0.6.9.1 0.6.9.2 0.7 0.8 All 103 releases
vimeography / tests / subclasses / test_shortcode.php

test_shortcode.php in Vimeography: Vimeo Video Gallery WordPress Plugin 2.2, at tests/subclasses/test_shortcode.php

35 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 class Test_Vimeography_Shortcode extends Vimeography_Shortcode
4 {
5 /**
6 * Determines which gallery settings to use based on the provided
7 * shortcode settings, the existing gallery db settings, and the
8 * fallback gallery settings.
9 *
10 * @return array The gallery settings to be used to render the current gallery.
11 */
12 public static function _apply_shortcode_gallery_settings($atts) {
13 return parent::_apply_shortcode_gallery_settings($atts);
14 }
15
16 /**
17 * Verifies that the provided width setting is a valid CSS parameter
18 *
19 * @param string $width
20 * @return string A percentage, pixel-based, or empty width value.
21 */
22 public static function _validate_gallery_width($width) {
23 return parent::_validate_gallery_width($width);
24 }
25
26 /**
27 * Load any custom CSS files that have been generated by the
28 * Vimegraphy theme customization tools.
29 *
30 * @return void
31 */
32 public function _vimeography_enqueue_custom_stylesheets() {
33 return $this->_vimeography_enqueue_custom_stylesheets();
34 }
35 }