HEX
Server: Apache/2.4.25
System: Linux ion14 4.9.0-8-amd64 #1 SMP Debian 4.9.144-3.1 (2019-02-19) x86_64
User: (10087)
PHP: 7.4.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,system, exec, shell_exec, passthru, popen, proc_open
Upload Files
File: /home/www/web115/wordpress/wp-content/themes/osmosis/includes/grve-vce-functions.php
<?php

/*
*	Osmosis Greatives Visual Composer Extension Plugin Hooks
*
* 	@version	1.0
* 	@author		Greatives Team
* 	@URI		http://greatives.eu
*/

/**
 * Translation function returning the theme translations
 */

/* All */
function grve_theme_vce_get_string_all() {
    return esc_html__( 'All', 'osmosis' );
}
/* Read more */
function grve_theme_vce_get_string_read_more() {
    return esc_html__( 'read more', 'osmosis' );
}
/* In Categories */
function grve_theme_vce_get_string_categories_in() {
    return esc_html__( 'in', 'osmosis' );
}
/* No comments */
function grve_theme_vce_get_string_no_comments() {
    return esc_html__( 'no comments', 'osmosis' );
}
/* One comment */
function grve_theme_vce_get_string_one_comment() {
    return esc_html__( '1 comment', 'osmosis' );
}
/* Comments */
function grve_theme_vce_get_string_comments() {
    return esc_html__( 'comments', 'osmosis' );
}
/* Author By */
function grve_theme_vce_get_string_by_author() {
    return esc_html__( 'By:', 'osmosis' );
}

/**
 * Hooks for portfolio translations
 */

add_filter( 'grve_vce_portfolio_string_all_categories', 'grve_theme_vce_get_string_all' );

 /**
 * Hooks for blog translations
 */

add_filter( 'grve_vce_string_read_more', 'grve_theme_vce_get_string_read_more' );
add_filter( 'grve_vce_blog_string_all_categories', 'grve_theme_vce_get_string_all' );
add_filter( 'grve_vce_blog_string_categories_in', 'grve_theme_vce_get_string_categories_in' );
add_filter( 'grve_vce_blog_string_no_comments', 'grve_theme_vce_get_string_no_comments' );
add_filter( 'grve_vce_blog_string_one_comment', 'grve_theme_vce_get_string_one_comment' );
add_filter( 'grve_vce_blog_string_comments', 'grve_theme_vce_get_string_comments' );
add_filter( 'grve_vce_blog_string_by_author', 'grve_theme_vce_get_string_by_author' );

//Omit closing PHP tag to avoid accidental whitespace output errors.