Dev#57305 story status sandbox improve search page
3 unresolved threads
3 unresolved threads
Merge request reports
Activity
Filter activity
53 $ret["cvs_msg_deco"] = "Vous devez etre connecté"; 54 $ret["cvs_nb_result"] = 5; 55 $ret["cvs_msg_droit"] = "Merci de contacter la médiathèque pour obtenir un accès."; 56 $ret["suggestion_achat"] = 1; // Afficher le lien "Suggérer un achat" 57 $ret["zones_titre"] = '200$e;200$h;200$i'; // Liste des zones de titre à afficher dans le résultat: exemple: 200$e;400$t 58 $ret['header_composition'] = new Class_Entity(); 59 return $ret; 60 } 61 62 63 public function getHeaderComposition($profile) { 64 $entity = new Class_Entity(); 65 66 return $entity 67 ->setId('header_composition') 68 ->setAvailableHeader($this->_('Outils disponible')) - library/ZendAfi/Form/Element/DragAndDrop.php 0 → 100644
9 * There are special exceptions to the terms and conditions of the AGPL as it 10 * is applied to this software (see README file). 11 * 12 * BOKEH is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU AFFERO GENERAL PUBLIC LICENSE for more details. 16 * 17 * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE 18 * along with BOKEH; if not, write to the Free Software 19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 20 */ 21 22 23 class ZendAfi_Form_Element_DragAndDrop extends Zend_Form_Element { 24 public function __construct($spec, $options=null) { 45 implode( 46 array_merge($composition, 47 $html)), 44 48 ['class' => 'resultats_page']); 45 49 } 46 50 47 51 52 protected function _getHeaderComposition() { 53 $instance = (new Class_Profil_Preferences_SearchResult()) 54 ->getHeaderComposition(Class_Profil::getCurrentProfil()); 55 56 return (new Storm_Collection($instance->getSelected())) 57 ->injectInto([], 58 function($items, $item) 59 { 60 $function = sprintf('search_%s', mentioned in commit 7ed9f931