HEX
Server: nginx/1.27.1
System: Linux in-4 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64
User: ilikadirect (1186)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v6964/testingff/public_html/fdfctr/wp-content/plugins/agentpress-listings/Gruntfile.js
'use strict';

module.exports = function(grunt) {

	// Load tasks
	require('load-grunt-tasks')(grunt);

	grunt.initConfig({
		pkg: grunt.file.readJSON('package.json'),


		// Dependencies

		// PHP

		// Lint .php files for syntax errors
		phplint: {
			all: [ '*.php',	'lib/**/*.php' ]
		},


		// I18n

		// Add text domain as last argument of i18n functions
		addtextdomain: {
			php: {
				files: {
					src: [
						'*.php',
						'lib/**/*.php'
					]
				}
			}
		},

		// Check text domain is last argument of i18n functions
		checktextdomain: {
			options: {
				text_domain: '<%= pkg.name %>',
				keywords: [
					'__:1,2d',
					'_e:1,2d',
					'_x:1,2c,3d',
					'_ex:1,2c,3d',
					'_n:1,2,4d',
					'_nx:1,2,4c,5d',
					'_n_noop:1,2,3d',
					'_nx_noop:1,2,3c,4d',
					'esc_attr__:1,2d',
					'esc_html__:1,2d',
					'esc_attr_e:1,2d',
					'esc_html_e:1,2d',
					'esc_attr_x:1,2c,3d',
					'esc_html_x:1,2c,3d'
				]
			},
			files: {
				expand: true,
				src: [
					'*.php',
					'lib/**/*.php'
				]
			}
		},


		// Build language .pot file
		makepot: {
			plugin: {
				options: {
					domainPath: '/languages',
					processPot: function( pot ) {
						pot.headers['report-msgid-bugs-to']   = 'StudioPress <translations@studiopress.com>';
						pot.headers['last-translator']        = 'StudioPress <translations@studiopress.com>';
						pot.headers['language-team']          = 'English <translations@studiopress.com>';
						pot.headers['plural-forms']           = 'nplurals=2; plural=n != 1;';
						pot.headers['x-generator']            = 'grunt-wp-i18n 0.4.4';
						pot.headers['x-poedit-basepath']      = '.';
						pot.headers['x-poedit-language']      = 'English';
						pot.headers['x-poedit-country']       = 'UNITED STATES';
						pot.headers['x-poedit-sourcecharset'] = 'utf-8';
						pot.headers['x-poedit-keywordslist']  = '__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;';
						pot.headers['x-poedit-bookmarks']     = '';
						pot.headers['x-poedit-searchpath-0']  = '.';
						pot.headers['x-textdomain-support']   = 'yes';
						return pot;
					},
					type: 'wp-plugin'
				}
			}
		},


	});

};