芝麻web文件管理V1.00
编辑当前文件:/home/p/r/i/prismawe/clients/canaldegap.fr_old/lib/classes/contenttypes/Link.inc.php
RemoveProperty('showinmenu',true); $this->RemoveProperty('cachable',true); $this->AddContentProperty('url',10,1); } function FillParams($params) { parent::FillParams($params); if (isset($params)) { $parameters = array('url'); foreach ($parameters as $oneparam) { if (isset($params[$oneparam])) { $this->SetPropertyValue($oneparam, $params[$oneparam]); } } if (isset($params['file_url'])) { $this->SetPropertyValue('url', $params['file_url']); } } } function ValidateData() { $errors = parent::ValidateData(); if( $errors === FALSE ) { $errors = array(); } if ($this->GetPropertyValue('url') == '') { $errors[]= lang('nofieldgiven',array(lang('url'))); $result = false; } return (count($errors) > 0?$errors:FALSE); } function TabNames() { $res = array(lang('main')); if( check_permission(get_userid(),'Manage All Content') ) { $res[] = lang('options'); } return $res; } function display_single_element($one,$adding) { switch($one) { case 'url': { return array(lang('url').':','
'); } break; default: return parent::display_single_element($one,$adding); } } function EditAsArray($adding = false, $tab = 0, $showadmin = false) { global $gCms; switch($tab) { case '0': return $this->display_attributes($adding); break; case '1': return $this->display_attributes($adding,1); break; } } // /* Modfied from the Diagnostics module's directoryToArray. Thanks to SjG */ // function directoryToSelect($directory, $recursive, &$orig_dir, $url) // { // $select = ''; // if ($handle = opendir($directory)) { // while (false !== ($file = readdir($handle))) { // if ($file != "." && $file != ".." && $file[0] != '.') { // Mod Skip hidden file/dir // if (is_dir($directory. "/" . $file)) { // if($recursive) { // $select .= $this->directoryToSelect($directory. "/" . $file, $recursive, $orig_dir, $url); // } // $file = $directory . "/" . $file; // $file = preg_replace("/\/\//si", "/", $file); // // $array_items[$file] = "(dir)"; // } else { // $file = $directory . "/" . $file; // // $stats = stat ( $file ); // $file = preg_replace("/\/\//si", "/", $file); // // $array_items[$file] = "(".$stats[7].") " . date("Y-m-d H:i:s",$stats[9]); // $uploads_dir = basename($orig_dir); // $file = str_replace($orig_dir, '', $file); // $file = $uploads_dir.$file; // // $array_items[$file] = $file; // $select .= '
'.$file.'
'; // } // } // } // closedir($handle); // } // return $select; // } function GetURL($rewrite = true) { return cms_htmlentities($this->GetPropertyValue('url')); } } # vim:ts=4 sw=4 noet ?>