Example #1
0
 public static function convertOldButton()
 {
     $settings = new Qualityunit_Liveagent_Helper_Settings();
     $setting = $settings->getOption(Qualityunit_Liveagent_Helper_Settings::BUTTON_CODE);
     if ($setting != '') {
         return;
     }
     $collection = Mage::getModel('liveagent/buttons')->getCollection();
     $buttonId = null;
     foreach ($collection as $button) {
         if ($buttonId === null && $button->getOnlinestatus() == 'Y' && $button->getContenttype() == 'F') {
             $buttonId = $button->getButtonid();
         }
         $button->delete();
     }
     if ($buttonId == null) {
         return;
     }
     $settings->saveButtonCodeForButtonId($buttonId);
 }