Contao\ChmodTable::generate PHP Метод

generate() публичный Метод

Generate the widget and return it as string
public generate ( ) : string
Результат string
    public function generate()
    {
        $arrObjects = array('u' => 'cuser', 'g' => 'cgroup', 'w' => 'cworld');
        $return = '  <table id="ctrl_defaultChmod" class="tl_chmod">
    <tr>
      <th></th>
      <th scope="col">' . $GLOBALS['TL_LANG']['CHMOD']['editpage'] . '</th>
      <th scope="col">' . $GLOBALS['TL_LANG']['CHMOD']['editnavigation'] . '</th>
      <th scope="col">' . $GLOBALS['TL_LANG']['CHMOD']['deletepage'] . '</th>
      <th scope="col">' . $GLOBALS['TL_LANG']['CHMOD']['editarticles'] . '</th>
      <th scope="col">' . $GLOBALS['TL_LANG']['CHMOD']['movearticles'] . '</th>
      <th scope="col">' . $GLOBALS['TL_LANG']['CHMOD']['deletearticles'] . '</th>
    </tr>';
        // Build rows for user, group and world
        foreach ($arrObjects as $k => $v) {
            $return .= '
    <tr>
      <th scope="row">' . $GLOBALS['TL_LANG']['CHMOD'][$v] . '</th>';
            // Add checkboxes
            for ($j = 1; $j <= 6; $j++) {
                $return .= '
      <td><input type="checkbox" name="' . $this->strName . '[]" value="' . \StringUtil::specialchars($k . $j) . '"' . static::optionChecked($k . $j, $this->varValue) . ' onfocus="Backend.getScrollOffset()"></td>';
            }
            $return .= '
    </tr>';
        }
        return $return . '
  </table>';
    }
ChmodTable