github.com/benoitkugler/goacve@v0.0.0-20201217100549-151ce6e55dc8/client/controllers/cont_test.go (about)

     1  package controllers
     2  
     3  // DO NOT EDIT -
     4  
     5  func setupOnglets(main *controllerPool) {
     6  	main.Personnes.Onglet = ongletPersonnes{}
     7  	main.Inscriptions.Onglet = ongletInscriptions{}
     8  	main.Camps.Onglet = ongletCamps{}
     9  	main.SuiviDossiers.Onglet = ongletSuiviDossiers{}
    10  	main.Aides.Onglet = ongletAides{}
    11  	main.Paiements.Onglet = ongletPaiements{}
    12  	main.SuiviCamps.Onglet = ongletSuiviCamps{}
    13  	main.Equipiers.Onglet = ongletEquipiers{}
    14  	main.Dons.Onglet = ongletDons{}
    15  
    16  }
    17  
    18  type ongletPersonnes struct {
    19  	OngletPersonnes
    20  }
    21  
    22  func (ongletPersonnes) IsActif() bool {
    23  	return true
    24  }
    25  func (ongletPersonnes) UpdateToolbar() {
    26  }
    27  func (ongletPersonnes) Render() {
    28  }
    29  func (ongletPersonnes) GrabFocus() {
    30  }
    31  
    32  type ongletInscriptions struct {
    33  	OngletInscriptions
    34  }
    35  
    36  func (ongletInscriptions) IsActif() bool {
    37  	return true
    38  }
    39  func (ongletInscriptions) UpdateToolbar() {
    40  }
    41  func (ongletInscriptions) Render() {
    42  }
    43  func (ongletInscriptions) GrabFocus() {
    44  }
    45  
    46  type ongletCamps struct {
    47  	OngletCamps
    48  }
    49  
    50  func (ongletCamps) IsActif() bool {
    51  	return true
    52  }
    53  func (ongletCamps) UpdateToolbar() {
    54  }
    55  func (ongletCamps) Render() {
    56  }
    57  func (ongletCamps) GrabFocus() {
    58  }
    59  
    60  type ongletSuiviDossiers struct {
    61  	OngletSuiviDossiers
    62  }
    63  
    64  func (ongletSuiviDossiers) IsActif() bool {
    65  	return true
    66  }
    67  func (ongletSuiviDossiers) UpdateToolbar() {
    68  }
    69  func (ongletSuiviDossiers) Render() {
    70  }
    71  func (ongletSuiviDossiers) GrabFocus() {
    72  }
    73  
    74  type ongletAides struct {
    75  	OngletAides
    76  }
    77  
    78  func (ongletAides) IsActif() bool {
    79  	return true
    80  }
    81  func (ongletAides) UpdateToolbar() {
    82  }
    83  func (ongletAides) Render() {
    84  }
    85  func (ongletAides) GrabFocus() {
    86  }
    87  
    88  type ongletPaiements struct {
    89  	OngletPaiements
    90  }
    91  
    92  func (ongletPaiements) IsActif() bool {
    93  	return true
    94  }
    95  func (ongletPaiements) UpdateToolbar() {
    96  }
    97  func (ongletPaiements) Render() {
    98  }
    99  func (ongletPaiements) GrabFocus() {
   100  }
   101  
   102  type ongletSuiviCamps struct {
   103  	OngletSuiviCamps
   104  }
   105  
   106  func (ongletSuiviCamps) IsActif() bool {
   107  	return true
   108  }
   109  func (ongletSuiviCamps) UpdateToolbar() {
   110  }
   111  func (ongletSuiviCamps) Render() {
   112  }
   113  func (ongletSuiviCamps) GrabFocus() {
   114  }
   115  
   116  type ongletEquipiers struct {
   117  	OngletEquipiers
   118  }
   119  
   120  func (ongletEquipiers) IsActif() bool {
   121  	return true
   122  }
   123  func (ongletEquipiers) UpdateToolbar() {
   124  }
   125  func (ongletEquipiers) Render() {
   126  }
   127  func (ongletEquipiers) GrabFocus() {
   128  }
   129  
   130  type ongletDons struct {
   131  	OngletDons
   132  }
   133  
   134  func (ongletDons) IsActif() bool {
   135  	return true
   136  }
   137  func (ongletDons) UpdateToolbar() {
   138  }
   139  func (ongletDons) Render() {
   140  }
   141  func (ongletDons) GrabFocus() {
   142  }