Function : core_meta_namespace()

Generate a namespace useful for meta boxes created with GUI-V1. Accepts as unique parameter an array for which inputs constitute a part of that namespace which looks like a URL address.
Here is how you can use it.

<?php
// $this->gui is a GUI-V1 object
$this->gui->set_meta( array(
	'namespace'		=>	core_meta_namespace( array( 'foo' , 'bar' ) ),
	'title'				=>	__( 'Custom title' )
) )->push_to( /* sample id */ );
// here core_meta_namespace() returns "meta.tendoo.org/foo/bar"