Function Reference: geodir_claim_notifications

Summary

This function has not been documented yet.

Filters

‘geodir_claim_notifications’ [Line: 447]

Source Code

function geodir_claim_notifications($arr=array()){

	$arr[] = array( 'name' => __( 'Notifications', 'geodirclaim' ), 'type' => 'no_tabs', 'desc' => '', 'id' => 'claim_notifications' );
	
	$arr[] = array( 'name' => __('Manage Geo Directory Claim Notifications', 'geodirclaim'), 'type' => 'sectionstart', 'id' => 'claim_notifications');
	
	$arr[] = array(  
		'name' => __('Admin claim listing request notice', 'geodirclaim'),
		'desc' 		=> '',
		'id' 		=> 'geodir_claim_email_subject_admin',
		'type' 		=> 'text',
		'css' 		=> 'min-width:300px;',
		'std' 		=> __('Claim Listing Requested', 'geodirclaim')
		);
	$arr[] = array(  
		'name' => '',
		'desc' 		=> '',
		'id' 		=> 'geodir_claim_email_content_admin',
		'css' 		=> 'width:500px; height: 150px;',
		'type' 		=> 'textarea',
		'std' 		=>  __("

Dear Admin,

A user has requested to become the owner of the below lisitng.

[#listing_link#]

You may wish to login and check the claim details.

Thank you,

[#site_name#].

", 'geodirclaim') ); $arr[] = array( 'name' => __('Claim listing request', 'geodirclaim'), 'desc' => '', 'id' => 'geodir_claim_email_subject', 'type' => 'text', 'css' => 'min-width:300px;', 'std' => __('Claim Listing Requested', 'geodirclaim') ); $arr[] = array( 'name' => '', 'desc' => '', 'id' => 'geodir_claim_email_content', 'css' => 'width:500px; height: 150px;', 'type' => 'textarea', 'std' => __("

Dear [#client_name#],

You have requested to become the owner of the below listing.

[#listing_link#]

We may contact you to confirm your request is genuine.

You will receive a email once your request has been verified

Thank you,

[#site_name#].

", 'geodirclaim') ); $arr[] = array( 'name' => __('Claim listing approval', 'geodirclaim'), 'desc' => '', 'id' => 'geodir_claim_approved_email_subject', 'type' => 'text', 'css' => 'min-width:300px;', 'std' => __('Claim Listing Approved', 'geodirclaim') ); $arr[] = array( 'name' => '', 'desc' => '', 'id' => 'geodir_claim_approved_email_content', 'css' => 'width:500px; height: 150px;', 'type' => 'textarea', 'std' => __("

Dear [#client_name#],

Your request to become the owner of the below listing has been APPROVED.

[#listing_link#]

You may now login and edit your listing.

Thank you,

[#site_name_url#].

", 'geodirclaim') ); $arr[] = array( 'name' => __('Claim listing rejected', 'geodirclaim'), 'desc' => '', 'id' => 'geodir_claim_rejected_email_subject', 'type' => 'text', 'css' => 'min-width:300px;', 'std' => __('Claim Listing Rejected', 'geodirclaim') ); $arr[] = array( 'name' => '', 'desc' => '', 'id' => 'geodir_claim_rejected_email_content', 'css' => 'width:500px; height: 150px;', 'type' => 'textarea', 'std' => __("

Dear [#client_name#],

Your request to become the owner of the below listing has been REJECTED.

[#listing_link#]

If you feel this is a wrong decision please reply to this email with your reasons.

Thank you,

[#site_name#].

", 'geodirclaim') ); $arr[] = array( 'name' => __('Claim listing verification required', 'geodirclaim'), 'desc' => '', 'id' => 'geodir_claim_auto_approve_email_subject', 'type' => 'text', 'css' => 'min-width:300px;', 'std' => __('Claim Listing Verification Required', 'geodirclaim') ); $arr[] = array( 'name' => '', 'desc' => '', 'id' => 'geodir_claim_auto_approve_email_content', 'css' => 'width:500px; height: 150px;', 'type' => 'textarea', 'std' => __("

Dear [#client_name#],

Your request to become the owner of the below listing needs to be verified.

[#listing_link#]

By clicking the VERIFY link below you are stating you are legally associated with this business and have the owners consent to edit the listing.

If you are not associated with this business and edit the listing with malicious intent you will be solely liable for any legal action or claims for damages.

[#approve_listing_link#]

Thank you,

[#site_name_url#].

", 'geodirclaim') ); $arr[] = array( 'type' => 'sectionend', 'id' => 'claim_notifications'); $arr = apply_filters('geodir_claim_notifications' ,$arr ); return $arr; }