MyBBDepo - Türkiyenin MyBB Deposu Forumuna Hoşgeldiniz
Eğer sitemize yaptığınız ilk ziyaretiniz ise, lütfen öncelikle Forum Kurallarını okuyunuz. Forumumuzda bilgi alışverişinde bulunabilmeniz için Kayıt olmalısınız. Üye olmayanlar forumumuzdan yararlanamazlar.
Eğer zaten kayıtlı kullanıcı iseniz, lütfen kullanıcı adınız ve şifreniz ile, Giriş yapınız. (Sitemize üyelik ücretsizdir).
korkusuz212 avatar
Konuyu Oyla:
  • Derecelendirme: 0/5 - 0 oy
  • 1
  • 2
  • 3
  • 4
  • 5

Derecelendirme: 0/5 - 0 oy

My Alert Plugin Sorunu


Sponsor Reklam

Çevrimdışı korkusuz212
 Tarih: 23-09-2017, Saat:02:00
(Son Düzenleme: 23-09-2017, Saat:02:01, Düzenleyen: korkusuz212.)
#1
İyi akşamlar arkadaşlar

Siteme My Alert eklentisi kurdum fakat temamda bozukluklara sebep oldu. header_welcomeblock_member  eklediği koddan dolayı temam bozulmaya uğruyordu.
(bkz:Square theme) Şöyle bir çözüm buldum.
header_welcomeblock_member kodların şablonundaki kodları tümünü kesip header_welcomeblock_member de ki;

resim

Görüldüğü üzere drop down menüye ekledim.

Eklenti kısmen çalışıyor görüldüğü üzere bildirimlere tıkladığım zaman böyle gözüküyor.
Ne yapmam gerekiyor.Teşekkürler


Kod:
<tr class="alert-row alert--{$alert['alert_code']} {$alert['alert_status']}"
   id="alert_row_{$alert['id']}">
   <td class="{$altbg}" width="50">
       <a class="avatar" href="{$alert['from_user_raw_profilelink']}"><img
               src="{$alert['avatar']['image']}"
               alt="{$alert['username']}'s avatar" {$alert['avatar']['width_height']}/></a>
   </td>
   <td class="{$altbg}">
       <a href="{$mybb->settings['bburl']}/alerts.php?action=view&amp;id={$alert['id']}">
           {$alert['message']}
       </a>
       <br/>
<span class="smalltext float_right">
<a href="{$mybb->settings['bburl']}/alerts.php?action=delete&amp;id={$alert['id']}&amp;my_post_key={$mybb->post_code}"
              class="deleteAlertButton" id="delete_alert_{$alert['id']}">{$lang->myalerts_delete}</a>
</span>
       <br class="clear"/>
   </td>
   <td class="{$altbg}">
       {$alert['received_at']}
   </td>
</tr>



Bu kodlarda sanırım sorun var. Eklentinin row_alert şablonudur kendileri.

header_welcomeblock_member'e eklediğim kod ise;


Kod:
<li class="alerts {$newAlertsIndicator}">
    <a href="{$mybb->settings['bburl']}/alerts.php" class="myalerts" onclick="MyBB.popupWindow('/alerts.php?action=modal&amp;ret_link={$myalerts_return_link}', { fadeDuration: 250, zIndex: (typeof modal_zindex !== 'undefined' ? modal_zindex : 9999) }); return false;">{$lang->myalerts_alerts}
        ({$mybb->user['unreadAlerts']})</a>
</li>

Drop downdaki eklenen bildirimler sekmesi çalışıyor fakat tıkladığım zaman resimdeki gibi bir sonuç geliyor karşıma.


Alert.php isteyen olursa

Kod:
<?php
/**
* MyAlerts alerts file - used to redirect to alerts, show alerts and more.
*/

define('IN_MYBB', true);
define('THIS_SCRIPT', 'alerts.php');

$templatelist = 'myalerts_alert_row_popup,myalerts_alert_row_popup_no_alerts,myalerts_modal_content';

require_once __DIR__ . '/global.php';

$action = $mybb->get_input('action', MyBB::INPUT_STRING);

if (!isset($lang->myalerts)) {
    $lang->load('myalerts');
}

if ((int) $mybb->user['uid'] < 1) {
    error_no_permission();
}

myalerts_create_instances();

switch ($action) {
    case 'view':
        myalerts_redirect_alert($mybb, $lang);
        break;
    case 'settings':
        myalerts_alert_settings(
            $mybb,
            $db,
            $lang,
            $plugins,
            $templates,
            $theme
        );
        break;
    case 'delete':
        myalerts_delete_alert($mybb, $db, $lang);
        break;
    case 'delete_read':
        myalerts_delete_read_alerts($mybb, $db, $lang);
        break;
    case 'delete_all':
        myalerts_delete_all_alerts($mybb, $db, $lang);
        break;
    case 'modal':
        myalerts_view_modal($mybb, $lang, $templates, $theme);
        break;
    default:
        myalerts_view_alerts($mybb, $lang, $templates, $theme);
        break;
}

/**
* Handle a request to view a single alert by marking the alert read and
* forwarding on to the correct location.
*
* @param MyBB       $mybb MyBB core object.
* @param MyLanguage $lang Language object.
*/
function myalerts_redirect_alert($mybb, $lang)
{
    $alertId = $mybb->get_input('id', MyBB::INPUT_INT);

   $alertManager = MybbStuff_MyAlerts_AlertManager::getInstance();

    /** @var MybbStuff_MyAlerts_Entity_Alert $alert */
    $alert = $alertManager->getAlert($alertId);

    if ($alert === null) {
        header($_SERVER['SERVER_PROTOCOL'] . ' 404 Not Found');
        error($lang->myalerts_error_alert_not_found);
        return;
    }

    /** @var MybbStuff_MyAlerts_Formatter_AbstractFormatter $alertTypeFormatter */
    $alertTypeFormatter = MybbStuff_MyAlerts_AlertFormatterManager::getInstance(
    )->getFormatterForAlertType($alert->getType()->getCode());

    if (!$alert || !$alertTypeFormatter) {
        error($lang->myalerts_error_alert_not_found);
    }

    MybbStuff_MyAlerts_AlertManager::getInstance()->markRead(array($alertId));

    $redirectLink = unhtmlentities($alertTypeFormatter->buildShowLink($alert));

    if (empty($redirectLink)) {
        $redirectLink = $mybb->settings['bburl'] . '/alerts.php';
    }

    header('Location: ' . $redirectLink);
}

/**
* Show a user their settings for MyAlerts.
*
* @param MyBB               $mybb      MyBB core object.
* @param DB_Base $db        Database object.
* @param MyLanguage         $lang      Language object.
* @param pluginSystem       $plugins   MyBB plugin system.
* @param templates          $templates Template manager.
* @param array              $theme     Details about the current theme.
*/
function myalerts_alert_settings(
    $mybb,
    $db,
    $lang,
    $plugins,
    $templates,
    $theme
) {
   $alertTypeManager = MybbStuff_MyAlerts_AlertTypeManager::getInstance();

    $alertTypes = $alertTypeManager->getAlertTypes();

    if (strtolower(
            $mybb->request_method
        ) == 'post'
    ) { // Saving alert type settings
        $disabledAlerts = array();

        foreach ($alertTypes as $alertCode => $alertType) {
            if (!isset($_POST[$alertCode]) && $alertType['can_be_user_disabled']) {
                $disabledAlerts[] = (int) $alertType['id'];
            }
        }

        if ($disabledAlerts != $mybb->user['myalerts_disabled_alert_types']) { // Different settings, so update
            $jsonEncodedDisabledAlerts = json_encode($disabledAlerts);

            $db->update_query(
                'users',
                array(
                    'myalerts_disabled_alert_types' => $db->escape_string(
                        $jsonEncodedDisabledAlerts
                    )
                ),
                'uid=' . (int) $mybb->user['uid']
            );
        }

        redirect(
            'alerts.php?action=settings',
            $lang->myalerts_settings_updated,
            $lang->myalerts_settings_updated_title
        );
    } else { // Displaying alert type settings form

        $content = '';

        global $headerinclude, $header, $footer, $usercpnav;

        add_breadcrumb(
            $lang->myalerts_settings_page_title,
            'alerts.php?action=settings'
        );

        require_once __DIR__ . '/inc/functions_user.php';
        usercp_menu();

        foreach ($alertTypes as $key => $value) {
            if ($value['enabled'] && $value['can_be_user_disabled']) {
                $altbg = alt_trow();
                $tempKey = 'myalerts_setting_' . $key;

                $plugins->run_hooks('myalerts_load_lang');

                $langline = $lang->$tempKey;

                $checked = '';
                if (!in_array(
                    $value['id'],
                    $mybb->user['myalerts_disabled_alert_types']
                )
                ) {
                    $checked = ' checked="checked"';
                }

                eval("\$alertSettings .= \"" . $templates->get(
                        'myalerts_setting_row'
                    ) . "\";");
            }
        }

        eval("\$content = \"" . $templates->get(
                'myalerts_settings_page'
            ) . "\";");
        output_page($content);
    }
}

/**
* Delete a single alert.
*
* @param MyBB               $mybb MyBB core object.
* @param DB_MySQL|DB_MySQLi $db   database object.
* @param MyLanguage         $lang MyBB language system.
*/
function myalerts_delete_alert($mybb, $db, $lang)
{
    $id = $mybb->get_input('id', MyBB::INPUT_INT);
    $userId = (int) $mybb->user['uid'];

    if ($id > 0) {
        verify_post_check($mybb->get_input('my_post_key'));

        $db->delete_query('alerts', "id = {$id} AND uid = {$userId}");

        redirect(
            'alerts.php?action=alerts',
            $lang->myalerts_delete_deleted,
            $lang->myalerts_delete_deleted
        );
    } else {
        redirect(
            'alerts.php?action=alerts',
            $lang->myalerts_delete_error,
            $lang->myalerts_delete_error
        );
    }
}

/**
* Delete all read alerts.
*
* @param MyBB               $mybb MyBB core object.
* @param DB_MySQL|DB_MySQLi $db   database object.
* @param MyLanguage         $lang MyBB language system.
*/
function myalerts_delete_read_alerts($mybb, $db, $lang)
{
    verify_post_check($mybb->get_input('my_post_key'));

    $userId = (int) $mybb->user['uid'];

    $db->delete_query('alerts', "uid = {$userId} AND unread = 0");

    if (($retLink = $mybb->get_input('ret_link', MyBB::INPUT_STRING)) !== '') {
        redirect(
            $retLink,
            $lang->myalerts_delete_all,
            $lang->myalerts_delete_mass_deleted
        );
    } else {
        redirect(
            'alerts.php?action=alerts',
            $lang->myalerts_delete_all,
            $lang->myalerts_delete_mass_deleted
        );
    }
}

/**
* Delete all alerts.
*
* @param MyBB               $mybb MyBB core object.
* @param DB_MySQL|DB_MySQLi $db   database object.
* @param MyLanguage         $lang MyBB language system.
*/
function myalerts_delete_all_alerts($mybb, $db, $lang)
{
    verify_post_check($mybb->get_input('my_post_key'));

    $userId = (int) $mybb->user['uid'];

    $db->delete_query('alerts', "uid = {$userId}");

    if (($retLink = $mybb->get_input('ret_link', MyBB::INPUT_STRING)) !== '') {
        redirect(
            $retLink,
            $lang->myalerts_delete_all,
            $lang->myalerts_delete_mass_deleted
        );
    } else {
        redirect(
            'alerts.php?action=alerts',
            $lang->myalerts_delete_all,
            $lang->myalerts_delete_mass_deleted
        );
    }
}

/**
* View the modal.
*
* @param MyBB       $mybb      MyBB core object.
* @param MyLanguage $lang      Language object.
* @param templates  $templates Template manager.
* @param array      $theme     Details about the current theme.
*/
function myalerts_view_modal($mybb, $lang, $templates, $theme)
{
    $userAlerts = MybbStuff_MyAlerts_AlertManager::getInstance()
                                                 ->getAlerts(
                                                     0,
                                                     $mybb->settings['myalerts_dropdown_limit']
                                                 );

    $alerts = '';

    if (is_array($userAlerts) && !empty($userAlerts)) {
        foreach ($userAlerts as $alertObject) {
            $altbg = alt_trow();

            $alert = parse_alert($alertObject);

            if ($alert['message']) {
                $alerts .= eval($templates->render('myalerts_alert_row_popup'));
            }

            $readAlerts[] = $alert['id'];
        }
    } else {
        $altbg = 'trow1';

        $alerts = eval($templates->render(
            'myalerts_alert_row_popup_no_alerts'
        ));
    }

    $myalerts_return_link = $mybb->get_input('ret_link');

    $myalerts_modal = eval($templates->render('myalerts_modal_content', 1, 0));

    echo $myalerts_modal;
    exit;
}

/**
* View all alerts.
*
* @param MyBB       $mybb      MyBB core object.
* @param MyLanguage $lang      Language object.
* @param templates  $templates Template manager.
* @param array      $theme     Details about the current theme.
*/
function myalerts_view_alerts($mybb, $lang, $templates, $theme)
{
   myalerts_create_instances();

    $alerts = MybbStuff_MyAlerts_AlertManager::getInstance()->getAlerts(0, 10);

    if (!isset($lang->myalerts)) {
        $lang->load('myalerts');
    }

    add_breadcrumb($lang->myalerts_page_title, 'alerts.php?action=alerts');

    require_once __DIR__ . '/inc/functions_user.php';
    usercp_menu();

    $numAlerts = MybbStuff_MyAlerts_AlertManager::getInstance()->getNumAlerts();
    $page = (int) $mybb->input['page'];
    $pages = ceil($numAlerts / $mybb->settings['myalerts_perpage']);

    if ($page > $pages OR $page <= 0) {
        $page = 1;
    }

    if ($page) {
        $start = ($page - 1) * $mybb->settings['myalerts_perpage'];
    } else {
        $start = 0;
        $page = 1;
    }
    $multipage = multipage(
        $numAlerts,
        $mybb->settings['myalerts_perpage'],
        $page,
        "alerts.php"
    );

    $alertsList = MybbStuff_MyAlerts_AlertManager::getInstance()->getAlerts(
        $start
    );

    $readAlerts = array();

    if (is_array($alertsList) && !empty($alertsList)) {
        foreach ($alertsList as $alertObject) {
            $altbg = alt_trow();

            $alert = parse_alert($alertObject);

            if ($alert['message']) {
                eval("\$alertsListing .= \"" . $templates->get(
                        'myalerts_alert_row'
                    ) . "\";");
            }

            $readAlerts[] = $alert['id'];
        }
    } else {
        $altbg = 'trow1';
        eval("\$alertsListing = \"" . $templates->get(
                'myalerts_alert_row_no_alerts'
            ) . "\";");
    }

    MybbStuff_MyAlerts_AlertManager::getInstance()->markRead($readAlerts);

    global $headerinclude, $header, $footer, $usercpnav;

    $content = '';
    eval("\$content = \"" . $templates->get('myalerts_page') . "\";");
    output_page($content);
}


Teşekkürler
Cevapla
Bunu Beğenenler:
Sponsor Reklam
Sponsor Reklam Sponsor Reklam

 


Konu ile Alakalı Benzer Konular
Konular Yazar Yorumlar Okunma Son Yorum
  [1.4 - 1.6 - 1.8] Şifre Degiştir Alanı Sorunu oktayaric 1 1,694 16-12-2023, Saat:16:20
Son Yorum: jextr
  vk video eklenti sorunu dny695 3 2,038 15-09-2022, Saat:01:33
Son Yorum: Charismax
  [1.8] Kayıt Sorunu AwpSlayer 3 2,280 09-07-2022, Saat:22:26
Son Yorum: AwpSlayer
  plugin yönetimine girince sql hatası alıyorum. dny695 2 2,036 08-01-2022, Saat:22:21
Son Yorum: jextr
  Yasaklı İp Adresli Kulanıcı Sorunu ,yardım lütfen, तोरूल 1 1,265 08-10-2021, Saat:19:54
Son Yorum: destur



Konuyu Okuyanlar: 1 Ziyaretçi

istanbul escort - mecidiyeköy escort - şişli escort - ataköy escort - taksim escort - escort mecidiyeköy

sex hikaye - porno izle - türk ifşa - mecidiyeköy escort - seks hikaye - türk porno - escort bayan