Changeset 6727
- Timestamp:
- 02/22/2018 11:43:38 PM (7 years ago)
- Location:
- sites/trunk/wordcamp.org/public_html/wp-content/plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/multi-event-sponsors/classes/mes-region.php
r4256 r6727 120 120 * @param int $region_id 121 121 * 122 * @return bool122 * @return string|bool The address on success, or `false` on failure. 123 123 */ 124 124 public static function get_camera_wranger_from_region( $region_id ) { -
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-functions.php
r6649 r6727 2 2 3 3 /** 4 * wcpt_head ()5 *6 4 * Add our custom head action to wp_head 7 * 8 * @package WordCamp Post Type 9 * @subpackage Template Tags 10 * @since WordCamp Post Type (0.1) 11 */ 5 */ 12 6 function wcpt_head () { 13 7 do_action( 'wcpt_head' ); … … 16 10 17 11 /** 18 * wcpt_head ()19 *20 12 * Add our custom head action to wp_head 21 *22 * @package WordCamp Post Type23 * @subpackage Template Tags24 * @since WordCamp Post Type (0.1)25 13 */ 26 14 function wcpt_footer () { … … 30 18 31 19 /** 32 * wcpt_has_access()33 *34 20 * Make sure user can perform special tasks 35 21 * 36 * @package WordCamp Post Type 37 * @subpackage Functions 38 * @since WordCamp Post Type (0.1) 39 * 40 * @uses is_super_admin () 41 * @uses apply_filters 42 * 43 * @return bool $has_access 22 * @return bool 44 23 */ 45 24 function wcpt_has_access () { … … 53 32 54 33 /** 55 * wcpt_number_format ( $number, $decimals optional )56 *57 34 * Specific method of formatting numeric values 58 35 * 59 * @package WordCamp Post Type 60 * @subpackage Functions 61 * @since WordCamp Post Type (0.1) 36 * @param string $number Number to format 37 * @param string $decimals optional Display decimals 62 38 * 63 * @param string $number Number to format64 * @param string $decimals optional Display decimals65 39 * @return string Formatted string 66 40 */ … … 74 48 75 49 /** 76 * wcpt_key_to_str ( $key = '' )77 *78 50 * Turn meta key into lower case string and transform spaces into underscores 79 51 * 80 52 * @param string $key 53 * 81 54 * @return string 82 55 */
Note: See TracChangeset
for help on using the changeset viewer.