PATH:
home
/
letacommog
/
entrepro
/
wp-content
/
themes
/
rehub
/
vafpress-framework
/
data
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?> <?php /** * Here is the place to put your own defined function that serve as * datasource to field with multiple options. */ function vp_get_categories() { $wp_cat = get_categories(array('hide_empty' => 0 )); $result = array(); foreach ($wp_cat as $cat) { $result[] = array('value' => $cat->cat_ID, 'label' => $cat->name); } return $result; } function vp_get_menus() { $menus = wp_get_nav_menus(); $result = array(); foreach ($menus as $menu) { $result[] = array('value' => $menu->term_id, 'label' => $menu->name); } return $result; } function vp_get_users() { $wp_users = VP_WP_User::get_users(); $result = array(); foreach ($wp_users as $user) { $result[] = array('value' => $user['id'], 'label' => $user['display_name']); } return $result; } function vp_get_posts() { $wp_posts = get_posts(array( 'posts_per_page' => -1, )); $result = array(); foreach ($wp_posts as $post) { $result[] = array('value' => $post->ID, 'label' => $post->post_title); } return $result; } function vp_get_pages() { $wp_pages = get_pages(); $result = array(); foreach ($wp_pages as $page) { $result[] = array('value' => $page->ID, 'label' => $page->post_title); } return $result; } function vp_get_tags() { $wp_tags = get_tags(array('hide_empty' => 0)); $result = array(); foreach ($wp_tags as $tag) { $result[] = array('value' => $tag->term_id, 'label' => $tag->name); } return $result; } function vp_get_roles() { $result = array(); $editable_roles = VP_WP_User::get_editable_roles(); foreach ($editable_roles as $key => $role) { $result[] = array('value' => $key, 'label' => $role['name']); } return $result; } function vp_get_gwf_family() { $fonts = json_decode(rh_filesystem('get_content', dirname(__FILE__) . '/gwf.json')); $fonts = array_keys(get_object_vars($fonts)); foreach ($fonts as $font) { $result[] = array('value' => $font, 'label' => $font); } return $result; } VP_Security::instance()->whitelist_function('vp_get_gwf_weight'); function vp_get_gwf_weight($face) { if(empty($face)) return array(); $fonts = json_decode(rh_filesystem('get_content', dirname(__FILE__) . '/gwf.json')); if( !property_exists($fonts, $face) ) return null; $weights = $fonts->{$face}->weights; foreach ($weights as $weight) { $result[] = array('value' => $weight, 'label' => $weight); } return $result; } VP_Security::instance()->whitelist_function('vp_get_gwf_style'); function vp_get_gwf_style($face) { if(empty($face)) return array(); $fonts = json_decode(rh_filesystem('get_content', dirname(__FILE__) . '/gwf.json')); if( !property_exists($fonts, $face) ) return null; $styles = $fonts->{$face}->styles; foreach ($styles as $style) { $result[] = array('value' => $style, 'label' => $style); } return $result; } VP_Security::instance()->whitelist_function('vp_get_gwf_subset'); function vp_get_gwf_subset($face) { if(empty($face)) return array(); $fonts = json_decode(rh_filesystem('get_content', dirname(__FILE__) . '/gwf.json')); if( !property_exists($fonts, $face) ) return null; $subsets = $fonts->{$face}->subsets; foreach ($subsets as $subset) { $result[] = array('value' => $subset, 'label' => $subset); } return $result; } function vp_get_social_medias() { $socmeds = array( array('value' => 'blogger', 'label' => 'Blogger'), array('value' => 'delicious', 'label' => 'Delicious'), array('value' => 'deviantart', 'label' => 'DeviantArt'), array('value' => 'digg', 'label' => 'Digg'), array('value' => 'dribbble', 'label' => 'Dribbble'), array('value' => 'email', 'label' => 'Email'), array('value' => 'facebook', 'label' => 'Facebook'), array('value' => 'flickr', 'label' => 'Flickr'), array('value' => 'forrst', 'label' => 'Forrst'), array('value' => 'foursquare', 'label' => 'Foursquare'), array('value' => 'github', 'label' => 'Github'), array('value' => 'googleplus', 'label' => 'Google+'), array('value' => 'instagram', 'label' => 'Instagram'), array('value' => 'lastfm', 'label' => 'Last.FM'), array('value' => 'linkedin', 'label' => 'LinkedIn'), array('value' => 'myspace', 'label' => 'MySpace'), array('value' => 'pinterest', 'label' => 'Pinterest'), array('value' => 'reddit', 'label' => 'Reddit'), array('value' => 'rss', 'label' => 'RSS'), array('value' => 'soundcloud', 'label' => 'SoundCloud'), array('value' => 'stumbleupon', 'label' => 'StumbleUpon'), array('value' => 'tumblr', 'label' => 'Tumblr'), array('value' => 'twitter', 'label' => 'Twitter'), array('value' => 'vimeo', 'label' => 'Vimeo'), array('value' => 'wordpress', 'label' => 'WordPress'), array('value' => 'yahoo', 'label' => 'Yahoo!'), array('value' => 'youtube', 'label' => 'Youtube'), ); return $socmeds; } function vp_get_fontawesome_icons() { // scrape list of icons from fontawesome css if( false === ( $icons = get_transient( 'vp_fontawesome_icons' ) ) ) { $pattern = '/\.(fa-(?:\w+(?:-)?)+):before\s*{\s*content/'; $subject = rh_filesystem('get_content', VP_DIR . '/public/css/vendor/font-awesome.min.css'); preg_match_all($pattern, $subject, $matches, PREG_SET_ORDER); $icons = array(); foreach($matches as $match) { $icons[] = array('value' => $match[1], 'label' => $match[1]); } set_transient( 'vp_fontawesome_icons', $icons, 60 * 60 * 24 ); } return $icons; } VP_Security::instance()->whitelist_function('vp_dep_boolean'); function vp_dep_boolean($value) { $args = func_get_args(); $result = true; foreach ($args as $val) { $result = ($result and !empty($val)); } return $result; } /** * EOF */
[+]
..
[-] gwf.json
[edit]
[-] sources.php
[edit]