Changeset 16380 for extensions/hr_os
- Timestamp:
- Jul 5, 2012, 10:24:53 PM (12 years ago)
- Location:
- extensions/hr_os
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/hr_os/theme.css
r16305 r16380 55 55 56 56 img{ border: 0; } 57 #derivativeSwitchBox, #sortOrderBox { 58 font-size: 11px; 59 color: #000033; 60 text-shadow: 0 0 2px #ccc; 61 padding: 4px 8px; 62 border: 1px solid rgba(255,255,255,0.25); 63 background-color: rgb(255,255,255); 64 background-color: rgba(255,255,255,0.92); 65 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#fff)); 66 border-radius: 3px; 67 -webkit-border-radius: 3px; 68 -moz-border-radius: 3px; 69 box-shadow: 0 0 5px #555; 70 -webkit-box-shadow: 0 0 5px #555; 71 -moz-box-shadow: 0 0 5px #555; 72 } 73 #derivativeSwitchBox A, #sortOrderBox A { 74 color: #000; 75 } 76 77 #derivativeSwitchBox A:hover, #sortOrderBox A:hover { 78 text-shadow: 0 0 2px #000; 79 } 80 57 81 58 82 /* Page … … 63 87 width: 800px; 64 88 margin: 0 auto; 65 position: relative;66 89 background: transparent url(img/back.jpg) repeat-y top center; 67 90 } … … 127 150 margin: 10px auto; 128 151 } 152 #imageToolBar .imageNumber { 153 float: right; 154 margin: -30px 9px 0 0; 155 } 129 156 #imageHeaderBar{ 130 157 background: #F5F5F5; … … 200 227 } 201 228 202 #menubar { position: relative; z-index: 2; } 203 #content { position: relative; z-index: 1; } 204 229 #menubar { position: relative; } 230 #theHeader { position: relative; } 205 231 #content div.thumbnailCategory div.description { 206 232 overflow: hidden; /* bug in FF 1.0 (not 1.5) */ -
extensions/hr_os/themeconf.inc.php
r12264 r16380 57 57 $template->assign('display_hr_os_banner', $header); 58 58 } 59 // function load_pattern 60 // include the right ***.pattern.php 61 // not compatible 2.2and<2.2 62 63 function load_pattern() 64 { 65 global $pattern; 66 $pwgversion=str_replace('.','',PHPWG_VERSION); 67 $pwgversion_array=explode('.', PHPWG_VERSION); 68 if (file_exists($pwgversion.'pattern.php')) 69 { 70 include($pwgversion.'.pattern.php'); 71 return true; 72 } 73 elseif (file_exists(PHPWG_ROOT_PATH.'themes/hr_os/'.$pwgversion_array[0].$pwgversion_array[1].'x.pattern.php')) 74 { 75 include(PHPWG_ROOT_PATH.'themes/hr_os/'.$pwgversion_array[0].$pwgversion_array[1].'x.pattern.php'); 76 return true; 77 } 78 else 79 { 80 $list_pattern_path=array(); 81 $dir=PHPWG_ROOT_PATH.'themes/hr_os'; 82 $dh = opendir($dir); 83 while (($file = readdir ($dh)) !== false ) { 84 if ($file !== '.' && $file !== '..') { 85 $path =$dir.'/'.$file; 86 if (!is_dir ($path)) { 87 if(strpos($file,'pattern.php')!==false) { //On ne prend que les .pattern.php 88 $list_pattern_path[]=$file; 89 } 90 } 91 } 92 } 93 closedir($dh); 94 $f=0; 95 for($i = 10; $i >=0; $i--) 96 { 97 if (in_array($pwgversion_array[0].$i.'.pattern.php',$list_pattern_path)) 98 { 99 include($pwgversion_array[0].$i.'.pattern.php'); 100 return true; 101 $f=1; 102 break; 103 } 104 } 105 if ($f=0) 106 { 107 return false; 108 } 109 } 110 111 } 112 if(!load_pattern()) 113 { 114 global $page; 115 $page['errors'][]='Theme not compatible'; 116 } 117 118 /************************************ picture.tpl ************************************/ 119 add_event_handler('render_element_content', 'hr_os_picture', EVENT_HANDLER_PRIORITY_NEUTRAL, 20 ); 120 function hr_os_picture($content, $element_info) 121 { 122 global $template; 123 $template->set_prefilter('default_content', 'hr_os_prefilter_picture'); 124 return $content; 125 } 126 function hr_os_prefilter_picture($content, &$smarty) 127 { 128 global $pattern; 129 $r=$pattern['hr_os_prefilter_picture']['R']; 130 $ps=$pattern['hr_os_prefilter_picture']['S']; 131 foreach($r as $i => $pr) 132 { 133 $content = str_replace($ps[$i], $pr, $content); 134 } 135 136 $content ='{define_derivative name=\'der_hr_os\' width=730 height=9999 crop=false} 137 {assign var=der value=$pwg->derivative($der_hr_os, $current.src_image)} 138 '.$content; 139 return $content; 140 } 141 59 142 60 143 ?>
Note: See TracChangeset
for help on using the changeset viewer.