| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/code/core/Mage/Adminhtml/Block/Customer/Edit/Tab/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Adminhtml
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Customer account form block
*
* @category Mage
* @package Mage_Adminhtml
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Adminhtml_Block_Customer_Edit_Tab_View
extends Mage_Adminhtml_Block_Template
implements Mage_Adminhtml_Block_Widget_Tab_Interface
{
protected $_customer;
protected $_customerLog;
public function getCustomer()
{
if (!$this->_customer) {
$this->_customer = Mage::registry('current_customer');
}
return $this->_customer;
}
public function getGroupName()
{
if ($groupId = $this->getCustomer()->getGroupId()) {
return Mage::getModel('customer/group')
->load($groupId)
->getCustomerGroupCode();
}
}
public function getCustomerLog()
{
if (!$this->_customerLog) {
$this->_customerLog = Mage::getModel('log/customer')
->load($this->getCustomer()->getId());
}
return $this->_customerLog;
}
public function getCreateDate()
{
$date = Mage::app()->getLocale()->date($this->getCustomer()->getCreatedAtTimestamp());
return $this->formatDate($date, Mage_Core_Model_Locale::FORMAT_TYPE_MEDIUM, true);
}
public function getStoreCreateDate()
{
$date = Mage::app()->getLocale()->storeDate(
$this->getCustomer()->getStoreId(),
$this->getCustomer()->getCreatedAtTimestamp(),
true
);
return $this->formatDate($date, Mage_Core_Model_Locale::FORMAT_TYPE_MEDIUM, true);
}
public function getStoreCreateDateTimezone()
{
return Mage::app()->getStore($this->getCustomer()->getStoreId())
->getConfig(Mage_Core_Model_Locale::XML_PATH_DEFAULT_TIMEZONE);
}
public function getLastLoginDate()
{
if ($date = $this->getCustomerLog()->getLoginAtTimestamp()) {
$date = Mage::app()->getLocale()->date($date);
return $this->formatDate($date, Mage_Core_Model_Locale::FORMAT_TYPE_MEDIUM, true);
}
return Mage::helper('customer')->__('Never');
}
public function getStoreLastLoginDate()
{
if ($date = $this->getCustomerLog()->getLoginAtTimestamp()) {
$date = Mage::app()->getLocale()->storeDate(
$this->getCustomer()->getStoreId(),
$date,
true
);
return $this->formatDate($date, Mage_Core_Model_Locale::FORMAT_TYPE_MEDIUM, true);
}
return Mage::helper('customer')->__('Never');
}
public function getStoreLastLoginDateTimezone()
{
return Mage::app()->getStore($this->getCustomer()->getStoreId())
->getConfig(Mage_Core_Model_Locale::XML_PATH_DEFAULT_TIMEZONE);
}
public function getCurrentStatus()
{
$log = $this->getCustomerLog();
if ($log->getLogoutAt() ||
strtotime(now())-strtotime($log->getLastVisitAt())>Mage_Log_Model_Visitor::getOnlineMinutesInterval()*60) {
return Mage::helper('customer')->__('Offline');
}
return Mage::helper('customer')->__('Online');
}
public function getIsConfirmedStatus()
{
$this->getCustomer();
if (!$this->_customer->getConfirmation()) {
return Mage::helper('customer')->__('Confirmed');
}
if ($this->_customer->isConfirmationRequired()) {
return Mage::helper('customer')->__('Not confirmed, cannot login');
}
return Mage::helper('customer')->__('Not confirmed, can login');
}
public function getCreatedInStore()
{
return Mage::app()->getStore($this->getCustomer()->getStoreId())->getName();
}
public function getStoreId()
{
return $this->getCustomer()->getStoreId();
}
public function getBillingAddressHtml()
{
$html = '';
if ($address = $this->getCustomer()->getPrimaryBillingAddress()) {
$html = $address->format('html');
}
else {
$html = Mage::helper('customer')->__('The customer does not have default billing address.');
}
return $html;
}
public function getAccordionHtml()
{
return $this->getChildHtml('accordion');
}
public function getSalesHtml()
{
return $this->getChildHtml('sales');
}
public function getTabLabel()
{
return Mage::helper('customer')->__('Customer View');
}
public function getTabTitle()
{
return Mage::helper('customer')->__('Customer View');
}
public function canShowTab()
{
if (Mage::registry('current_customer')->getId()) {
return true;
}
return false;
}
public function isHidden()
{
if (Mage::registry('current_customer')->getId()) {
return false;
}
return true;
}
}