コード例 #1
0
ファイル: default.php プロジェクト: madseller/coperio
    ?>

            </table>
            <br><br>
            <input type="submit" class="btn" value="<?php 
    echo JText::_('COM_JINC_SUBSCRIBE');
    ?>
">
            <input type="hidden" name="option" value="com_jinc">
            <input type="hidden" name="task" value="newsletter.subscribe">
            <input type="hidden" name="id" value="<?php 
    echo $id;
    ?>
">
            <?php 
    echo JHTML::_('form.token');
    ?>
        </div>
    </form>
    <?php 
}
?>
<br>
<?php 
if (isset($this->messages)) {
    $messages = $this->messages;
    if (!empty($messages)) {
        jincimport('frontend.jincfrontendhelper');
        JINCFrontnedHelper::listMessages($newsletter, $messages);
    }
}
コード例 #2
0
 static function listMessages($newsletter, $messages)
 {
     jincimport('core.newsletter');
     $front_type = $newsletter->get('front_type');
     if ($front_type == NEWSLETTER_FRONT_TYPE_ONLY_TITLE) {
         return JINCFrontnedHelper::listMessagesTitle($newsletter, $messages, false);
     }
     if ($front_type == NEWSLETTER_FRONT_TYPE_CLICKABLE_TITLE) {
         return JINCFrontnedHelper::listMessagesTitle($newsletter, $messages, true);
     }
     if ($front_type == NEWSLETTER_FRONT_TYPE_ENTIRE_MESSAGE) {
         return JINCFrontnedHelper::listMessagesEntire($newsletter, $messages);
     }
 }
コード例 #3
0
ファイル: default.php プロジェクト: madseller/coperio
/**
 * @copyright           Copyright (C) 2010 - Lhacky
 * @license		GNU/GPL http://www.gnu.org/licenses/gpl-2.0.html
 *   This file is part of JINC.
 *
 *   JINC is free software: you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation, either version 3 of the License, or
 *   (at your option) any later version.
 *
 *   JINC is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with JINC.  If not, see <http://www.gnu.org/licenses/>.
 */
defined('_JEXEC') or die('Restricted access');
JHTML::_('behavior.tooltip');
isset($this->message) || die('Message not found');
isset($this->newsletter) || die('Newsletter not found');
$newsletter = $this->newsletter;
$front_theme = $newsletter->get('front_theme') . '.css';
$message = $this->message;
echo JHTML::stylesheet($front_theme, 'components/com_jinc/assets/themes/');
echo JHTML::script('components/com_jinc/assets/js/jinc.js');
jincimport('frontend.jincfrontendhelper');
JINCFrontnedHelper::showMessage($newsletter, $message);