Пример #1
0
        <td><?php 
$FPCM_LANG->write('USERS_DISPLAYNAME');
?>
:</td>
        <td><?php 
\fpcm\model\view\helper::textInput('displayname', '', $author->getDisplayName());
?>
</td>
    </tr>
    <tr>
        <td><?php 
$FPCM_LANG->write('GLOBAL_EMAIL');
?>
:</td>
        <td><?php 
\fpcm\model\view\helper::textInput('email', '', $author->getEmail());
?>
</td>
    </tr>
    <tr>
        <td><?php 
$FPCM_LANG->write('USERS_ROLL');
?>
:</td>
        <td>
            <?php 
if (isset($inProfile) && $inProfile) {
    ?>
                <?php 
    \fpcm\model\view\helper::select('roll', $userRolls, $author->getRoll(), false, false, true);
    ?>
Пример #2
0
$FPCM_LANG->write('INSTALLER_DBCONNECTION_USER');
?>
:</td>
                <td><?php 
\fpcm\model\view\helper::textInput('database[DBUSER]', 'fpcm-installer-data');
?>
</td>
            </tr>
            <tr>
                <td><?php 
$FPCM_LANG->write('INSTALLER_DBCONNECTION_PASS');
?>
:</td>
                <td><?php 
\fpcm\model\view\helper::passwordInput('database[DBPASS]', 'fpcm-installer-data');
?>
</td>
            </tr>
            <tr>
                <td><?php 
$FPCM_LANG->write('INSTALLER_DBCONNECTION_PREF');
?>
:</td>
                <td><?php 
\fpcm\model\view\helper::textInput('database[DBPREF]', 'fpcm-installer-data', 'fpcm3');
?>
</td>
            </tr>
        </table>        
    </div>
</div>
Пример #3
0
                <li><a href="#tabs-roll"><?php 
$FPCM_LANG->write('USERS_ROLL_EDIT');
?>
</a></li>
            </ul>            
            
            <div id="tabs-roll">
                <table class="fpcm-ui-table">
                    <tr>
                        <td><?php 
$FPCM_LANG->write('USERS_ROLLS_NAME');
?>
:</td>
                        <td>
                            <?php 
\fpcm\model\view\helper::textInput('rollname', '', $userRoll->getRollName());
?>
                        </td>
                    </tr>      
                </table>            

                <div class="<?php 
\fpcm\model\view\helper::buttonsContainerClass();
?>
 fpcm-ui-list-buttons">
                    <div class="fpcm-ui-margin-center">
                        <?php 
\fpcm\model\view\helper::saveButton('saveRoll');
?>
                    </div>
                </div>                
Пример #4
0
<table class="fpcm-ui-table">
    <tr>
        <td><?php 
$FPCM_LANG->write('FILE_LIST_SMILEYCODE');
?>
:</td>
        <td>
            <?php 
\fpcm\model\view\helper::textInput('smiley[code]', '', $smiley->getSmileyCode());
?>
        </td>
    </tr>
    <tr>
        <td><?php 
$FPCM_LANG->write('FILE_LIST_FILENAME');
?>
:</td>
        <td>
            <table class="fpcm-ui-table fpcm-ui-smileys">
                <?php 
\fpcm\model\view\helper::notFoundContainer($files, 4);
?>
                <?php 
foreach ($files as $filename) {
    ?>
                <tr>
                    <td class="fpcm-ui-smiley-listimg"><img src="<?php 
    print $smiley->getFilename() ? $smiley->getSmileyUrl() : $smiley->getSmileyUrl() . $filename;
    ?>
" alt="<?php 
    print $filename;
Пример #5
0
</td>
            <td><?php 
\fpcm\model\view\helper::select('approved', $searchApproval, null, false, false, false, 'fpcm-comments-search-input fpcm-ui-input-select-commentsearch');
?>
</td>
            <td><?php 
\fpcm\model\view\helper::select('private', $searchPrivate, null, false, false, false, 'fpcm-comments-search-input fpcm-ui-input-select-commentsearch');
?>
</td>
        </tr>
        <tr>    
            <td><?php 
\fpcm\model\view\helper::textInput('datefrom', 'fpcm-comments-search-input fpcm-full-width-date', '', false, 10, $FPCM_LANG->translate('ARTICLE_SEARCH_DATE_FROM'), 'fpcm-full-width');
?>
</td>
            <td><?php 
\fpcm\model\view\helper::textInput('dateto', 'fpcm-comments-search-input fpcm-full-width-date', '', false, 10, $FPCM_LANG->translate('ARTICLE_SEARCH_DATE_TO'), 'fpcm-full-width');
?>
</td>
            <td></td>
        </tr>
        <tr>
            <td></td>
            <td></td>
            <td><?php 
\fpcm\model\view\helper::select('combination', $searchCombination, null, false, false, false, 'fpcm-comments-search-input fpcm-ui-input-select-commentsearch');
?>
</td>
        </tr>
    </table>
</div>
Пример #6
0
?>
</td>
        </tr>         
    </table>
</div>

<!-- Tabelle einfügen -->
<div class="fpcm-ui-dialog-layer fpcm-hidden fpcm-editor-dialog" id="fpcm-dialog-editor-html-insertcolor">  
    <table class="fpcm-ui-table">
        <tr>
            <td><label><?php 
$FPCM_LANG->write('EDITOR_INSERTCOLOR_HEXCODE');
?>
:</label></td>
            <td><?php 
\fpcm\model\view\helper::textInput('fpcm-dialog-editor-html-colorhexcode', '', '', false, 5);
?>
</td>
        </tr>   
        <tr>
            <td><label><?php 
$FPCM_LANG->write('EDITOR_INSERTCOLOR_TEXT');
?>
:</label></td>
            <td><?php 
fpcm\model\view\helper::radio('color_mode', 'color_mode', 'color', '', 'color_mode1');
?>
</td>
        </tr>
        <tr>
            <td><label><?php 
Пример #7
0
            <?php 
        } elseif ($options['type'] == 'checkbox') {
            ?>
                <?php 
            \fpcm\model\view\helper::checkbox('userfields[' . $options['name'] . ']', $options['class'], $options['value'], $options['description'], $options['id'], $options['selected'], $options['readonly']);
            ?>
            <?php 
        } elseif ($options['type'] == 'radio') {
            ?>
                <?php 
            \fpcm\model\view\helper::radio('userfields[' . $options['name'] . ']', $options['class'], $options['value'], $options['description'], $options['id'], $options['selected'], $options['readonly']);
            ?>
            <?php 
        } else {
            ?>
                <?php 
            \fpcm\model\view\helper::textInput('userfields[' . $options['name'] . ']', $options['class'], $options['value'], $options['readonly'], $options['lenght']);
            ?>
            <?php 
        }
        ?>
    
            </div>
            <div class="fpcm-ui-editor-extended-col">

            </div>
            <div class="fpcm-clear"></div>
        </div>  
    <?php 
    }
}
Пример #8
0
        <td><strong><?php 
$FPCM_LANG->write('GLOBAL_EMAIL');
?>
</strong>:</td>
        <td><?php 
\fpcm\model\view\helper::textInput('comment[email]', 'fpcm-full-width', $comment->getEmail());
?>
</td>
    </tr> 
    <tr>
        <td><strong><?php 
$FPCM_LANG->write('COMMMENT_WEBSITE');
?>
</strong>:</td>
        <td><?php 
\fpcm\model\view\helper::textInput('comment[website]', 'fpcm-full-width', $comment->getWebsite());
?>
</td>
    </tr>
    <?php 
if ($permApprove || $permPrivate) {
    ?>
    <tr>
        <td colspan="2">
            <div class="fpcm-ui-buttonset">
                <?php 
    if ($permApprove) {
        ?>
                    <?php 
        fpcm\model\view\helper::checkbox('comment[spam]', '', 1, 'COMMMENT_SPAM', 'spam', $comment->getSpammer());
        ?>
Пример #9
0
        <td><?php 
$FPCM_LANG->write('WORDBAN_NAME');
?>
:</td>
        <td><?php 
\fpcm\model\view\helper::textInput('wbitem[searchtext]', '', $item->getSearchtext());
?>
</td>
    </tr>
    <tr>
        <td><?php 
$FPCM_LANG->write('WORDBAN_ICON_PATH');
?>
:</td>
        <td><?php 
\fpcm\model\view\helper::textInput('wbitem[replacementtext]', '', $item->getReplacementtext());
?>
</td>
    </tr>              
</table> 

<div class="<?php 
\fpcm\model\view\helper::buttonsContainerClass();
?>
 fpcm-ui-list-buttons">
    <div class="fpcm-ui-margin-center">
        <?php 
\fpcm\model\view\helper::saveButton('wbitemSave');
?>
    </div>
</div>
Пример #10
0
                    <tr>
                        <td colspan="2">
                            <p><?php 
$FPCM_LANG->write('IPLIST_DESCRIPTION');
?>
</p>
                        </td>
                    </tr>
                    <tr>
                        <td><?php 
$FPCM_LANG->write('IPLIST_IPADDRESS');
?>
:</td>
                        <td>
                            <?php 
\fpcm\model\view\helper::textInput('ipaddress');
?>
                        </td>
                    </tr>
                    <tr>
                        <td><?php 
$FPCM_LANG->write('IPLIST_BLOCKTYPE');
?>
:</td>
                        <td class="fpcm-ui-buttonset">
                            <?php 
fpcm\model\view\helper::checkbox('nocomments', '', '1', 'IPLIST_NOCOMMENTS', 'nocomments', false);
?>
 
                            <?php 
fpcm\model\view\helper::checkbox('nologin', '', '1', 'IPLIST_NOLOGIN', 'nologin', false);
Пример #11
0
                <li><a href="#tabs-roll"><?php 
$FPCM_LANG->write('USERS_ROLL_ADD');
?>
</a></li>
            </ul>            
            
            <div id="tabs-roll">
                <table class="fpcm-ui-table">
                    <tr>
                        <td><?php 
$FPCM_LANG->write('USERS_ROLLS_NAME');
?>
:</td>
                        <td>
                            <?php 
\fpcm\model\view\helper::textInput('rollname');
?>
                        </td>
                    </tr>      
                </table>            

                <div class="<?php 
\fpcm\model\view\helper::buttonsContainerClass();
?>
 fpcm-ui-list-buttons">
                    <div class="fpcm-ui-margin-center">
                        <?php 
\fpcm\model\view\helper::saveButton('saveRoll');
?>
                    </div>
                </div>                
Пример #12
0
?>
:</td>
            <td>
                <?php 
\fpcm\model\view\helper::select('usermeta[system_lang]', $languages, $author->getUserMeta('system_lang'), false, false);
?>
            </td>
        </tr>                
        <tr>
            <td><?php 
$FPCM_LANG->write('SYSTEM_OPTIONS_DATETIMEMASK');
?>
:</td>
            <td>
                <?php 
\fpcm\model\view\helper::textInput('usermeta[system_dtmask]', '', $author->getUserMeta('system_dtmask'));
?>
                <?php 
\fpcm\model\view\helper::shortHelpButton($FPCM_LANG->translate('SYSTEM_OPTIONS_DATETIMEMASK_HELP'), '', 'http://us2.php.net/manual/function.date.php', '_blank');
?>
            </td>
        </tr>
        <tr>
            <td><?php 
$FPCM_LANG->write('SYSTEM_OPTIONS_ACPARTICLES_LIMIT');
?>
:</td>
            <td>
                <?php 
fpcm\model\view\helper::select('usermeta[articles_acp_limit]', $articleLimitList, $author->getUserMeta('articles_acp_limit'), false, false);
?>
Пример #13
0
            ?>
                            <?php 
            \fpcm\model\view\helper::textInput('login[username]', '', '', false, 255, $FPCM_LANG->translate('GLOBAL_USERNAME'));
            ?>
                        <?php 
        }
        ?>
                        </td>
                    </tr>
                    <tr>
                        <td>
                        <?php 
        if ($resetPasswort) {
            ?>
                            <?php 
            \fpcm\model\view\helper::textInput('email', '', '', false, 255, $FPCM_LANG->translate('GLOBAL_EMAIL'));
            ?>
                        <?php 
        } else {
            ?>
                            <?php 
            \fpcm\model\view\helper::passwordInput('login[password]', '', '', false, 255, $FPCM_LANG->translate('GLOBAL_PASSWORD'));
            ?>
                        <?php 
        }
        ?>
                        </td>
                </table>

                
                <div class="<?php 
Пример #14
0
    <tr>
        <td><strong><?php 
$FPCM_LANG->write('NKORG_MODULECREATOR_GENERAL_VERSION');
?>
</strong></td>
        <td><?php 
\fpcm\model\view\helper::textInput('nkorgmodulecreator[version]', 'fpcm-half-width fpcm-nkorgmodulecreator-input', '0.0.1');
?>
</td>
    </tr>
    <tr>
        <td><strong><?php 
$FPCM_LANG->write('NKORG_MODULECREATOR_GENERAL_FPCMVER');
?>
</strong></td>
        <td><?php 
\fpcm\model\view\helper::textInput('nkorgmodulecreator[sysversion]', 'fpcm-half-width fpcm-nkorgmodulecreator-input', $FPCM_VERSION);
?>
</td>
    </tr>
    <tr>
        <td><strong><?php 
$FPCM_LANG->write('NKORG_MODULECREATOR_GENERAL_DESCR');
?>
</strong></td>
        <td><?php 
\fpcm\model\view\helper::textArea('nkorgmodulecreator[description]', 'fpcm-half-width fpcm-nkorgmodulecreator-input');
?>
</td>
    </tr>
</table>
Пример #15
0
        <td><?php 
$FPCM_LANG->write('CATEGORIES_NAME');
?>
:</td>
        <td><?php 
\fpcm\model\view\helper::textInput('category[name]', '', $category->getName());
?>
</td>
    </tr>
    <tr>
        <td><?php 
$FPCM_LANG->write('CATEGORIES_ICON_PATH');
?>
:</td>
        <td><?php 
\fpcm\model\view\helper::textInput('category[iconpath]', '', $category->getIconPath());
?>
</td>
    </tr>
    <tr>
        <td><?php 
$FPCM_LANG->write('CATEGORIES_ROLLS');
?>
</td>
        <td class="fpcm-ui-buttonset">
        <?php 
foreach ($userRolls as $rollname => $rollid) {
    ?>
            <?php 
    if (isset($selectedGroups)) {
        $selected = in_array($rollid, $selectedGroups) ? true : false;
Пример #16
0
                        <td><?php 
$FPCM_LANG->write('NKORG_TWEETENTENDER_SEARCHTERM');
?>
:</td>
                        <td><?php 
\fpcm\model\view\helper::textInput('term[search]', '', $term->getSearchterm());
?>
</td>
                    </tr>
                    <tr>
                        <td><?php 
$FPCM_LANG->write('NKORG_TWEETENTENDER_REPLACETERM');
?>
:</td>
                        <td><?php 
\fpcm\model\view\helper::textInput('term[replace]', '', $term->getReplaceterm());
?>
</td>
                    </tr>         
                </table> 

                <div class="<?php 
\fpcm\model\view\helper::buttonsContainerClass();
?>
">
                    <table>
                        <tr>
                            <td><?php 
\fpcm\model\view\helper::saveButton('termSave');
?>
</td>
Пример #17
0
    ?>
                <?php 
    include dirname(__DIR__) . '/metainfo.php';
    ?>
                <div class="fpcm-clear"></div>
            </div>
        </td>
    </tr>    
    <?php 
}
?>
    
    <tr>
        <td>
            <?php 
\fpcm\model\view\helper::textInput('article[title]', 'fpcm-full-width', $article->getTitle());
?>
        </td>
    </tr>
    <tr>
        <td class="fpcm-ui-editor-categories">
            <?php 
include dirname(__DIR__) . '/categories.php';
?>
        </td>
    </tr>
     <tr>
        <td>
            <?php 
\fpcm\model\view\helper::textArea('article[content]', 'fpcm-full-width', stripslashes($article->getContent()), false, false);
?>
Пример #18
0
                        <td><?php 
$FPCM_LANG->write('NKORGINACTIVITY_MANAGER_START');
?>
</td>
                        <td><?php 
\fpcm\model\view\helper::textInput('msg[start]', 'nkorg-inactivity-manager-dates', date('Y-m-d', $msg->getStarttime()));
?>
</td>
                    </tr>  
                    <tr>
                        <td><?php 
$FPCM_LANG->write('NKORGINACTIVITY_MANAGER_STOP');
?>
</td>
                        <td><?php 
\fpcm\model\view\helper::textInput('msg[stop]', 'nkorg-inactivity-manager-dates', date('Y-m-d', $msg->getStoptime()));
?>
</td>
                    </tr> 
                    <tr>
                        <td><?php 
$FPCM_LANG->write('NKORGINACTIVITY_MANAGER_NOCOMMENTS');
?>
</td>
                        <td><?php 
fpcm\model\view\helper::checkbox('msg[nocomments]', '', '1', '', '', $msg->getNocomments());
?>
</td>
                    </tr>
                </table>