HEX
Server: Apache
System: Linux dev.epsylon.net 3.10.0-1160.144.1.el7.tuxcare.els2.x86_64 #1 SMP Sun Feb 15 11:22:42 UTC 2026 x86_64
User: nexper (1054)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/nexper/public_html/sites/all/modules/epsylon_propiedades/epsylon_propiedades.module
<?php
/**
* @file
* Bloque que muestra un catalogo de las propiedades ingresadas en sistema epsylon.
*/
function epsylon_propiedades_help($path, $arg) {
  switch ($path) {
    case "admin/help#epsylon_propiedades":
      return '<p>' . t("Muestra propiedades ingresadas en sistema epsylon via catalogo.") . '</p>';
      break;
  }
} 
/**
* Implements hook_block_info().
*/
function epsylon_propiedades_block_info(){
  $blocks['epsylon_propiedades'] = array(
    'info' => t('Propiedades hemerge'), //The name that will appear in the block list.
    'cache' => DRUPAL_CACHE_PER_ROLE, //Default
  );
  return $blocks;
}
function epsylon_propiedades_contents(){
	return 'testing';
}
function epsylon_propiedades_block_view($delta = '') {
	switch($delta){
		case 'epsylon_propiedades':
			$block['subject'] = t('Propiedades Ingresadas');
			if(user_access('access content')){
				$block['content'] = 'testing';
			}
		return $block;
	}
}