File: tabs_ldif.inc

package info (click to toggle)
gosa-plugins-ldapmanager 2.8~git20211022.877a67e-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 396 kB
  • sloc: php: 1,055; makefile: 5
file content (24 lines) | stat: -rw-r--r-- 349 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

class ldiftab extends tabs
{

  function __construct($config, $data, $dn)
  {
    tabs::__construct($config, $data, $dn);
  }

  function save_object($save_current= FALSE)
  {
    tabs::save_object($save_current);
  }


  function save($ignore_account= FALSE)
  {
  }

}

// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
?>