Yeri Değil Ama Konu açamıyorum..nedense...Belki faydalanan olur.
1.4.9.x modüllerini 1.5.x uyarlamak
Modülünüzün içerindeki kodları yenileri ile dğiştirin.
a. HTTP, no arguments:
BUL:
HTTP_SERVER . 'index.php?route=common/home'
AŞAĞIDAKİYLE DEĞİŞTİR:
$this->url->link('common/home')
b. HTTP, with arguments:
BUL:
HTTP_SERVER . 'index.php?route=product/product&product_id=' . $result['product_id']
AŞAĞIDAKİYLE DEĞİŞTİR:
$this->url->link('product/product', 'product_id=' . $result['product_id'])
c. HTTPS, no argument:
BUL:
HTTP_SERVER . 'index.php?route=account/login'
AŞAĞIDAKİYLE DEĞİŞTİR:
$this->url->link('account/login', '', 'SSL')
d. HTTPS, with argument:
BUL:
HTTP_SERVER . 'index.php?route=product/product&product_id=' . $result['product_id']
AŞAĞIDAKİYLE DEĞİŞTİR:
$this->url->link('account/order', 'order_id=' . $result['order_id'], 'SSL')
e. HTTPS, with token argument:
BUL:
HTTPS_SERVER . 'index.php?route=catalog/category&token=' . $this->session->data['token']
AŞAĞIDAKİYLE DEĞİŞTİR:
$this->url->link('catalog/category', 'token=' . $this->session->data['token'], 'SSL')
2. Breadcrumbs have moved to the individual controller
GLOBAL BUL:
$this->document->breadcrumbs
GLOBAL AŞAĞIDAKİYLE DEĞİŞTİR:
$this->data['breadcrumbs']
3. Document class is private now and requires the use of accessor functions
BUL:
$this->document->title = xxxxx
AŞAĞIDAKİYLE DEĞİŞTİR:
$this->document->setTitle('xxxxx')
4. Render has changed
GLOBAL BUL:
$this->response->setOutput($this->render(TRUE), $this->config->get('config_compression'));
GLOBAL AŞAĞIDAKİYLE DEĞİŞTİR:
$this->response->setOutput($this->render());
1.4.9.x modüllerini 1.5.x uyarlamak
Modülünüzün içerindeki kodları yenileri ile dğiştirin.
a. HTTP, no arguments:
BUL:
HTTP_SERVER . 'index.php?route=common/home'
AŞAĞIDAKİYLE DEĞİŞTİR:
$this->url->link('common/home')
b. HTTP, with arguments:
BUL:
HTTP_SERVER . 'index.php?route=product/product&product_id=' . $result['product_id']
AŞAĞIDAKİYLE DEĞİŞTİR:
$this->url->link('product/product', 'product_id=' . $result['product_id'])
c. HTTPS, no argument:
BUL:
HTTP_SERVER . 'index.php?route=account/login'
AŞAĞIDAKİYLE DEĞİŞTİR:
$this->url->link('account/login', '', 'SSL')
d. HTTPS, with argument:
BUL:
HTTP_SERVER . 'index.php?route=product/product&product_id=' . $result['product_id']
AŞAĞIDAKİYLE DEĞİŞTİR:
$this->url->link('account/order', 'order_id=' . $result['order_id'], 'SSL')
e. HTTPS, with token argument:
BUL:
HTTPS_SERVER . 'index.php?route=catalog/category&token=' . $this->session->data['token']
AŞAĞIDAKİYLE DEĞİŞTİR:
$this->url->link('catalog/category', 'token=' . $this->session->data['token'], 'SSL')
2. Breadcrumbs have moved to the individual controller
GLOBAL BUL:
$this->document->breadcrumbs
GLOBAL AŞAĞIDAKİYLE DEĞİŞTİR:
$this->data['breadcrumbs']
3. Document class is private now and requires the use of accessor functions
BUL:
$this->document->title = xxxxx
AŞAĞIDAKİYLE DEĞİŞTİR:
$this->document->setTitle('xxxxx')
4. Render has changed
GLOBAL BUL:
$this->response->setOutput($this->render(TRUE), $this->config->get('config_compression'));
GLOBAL AŞAĞIDAKİYLE DEĞİŞTİR:
$this->response->setOutput($this->render());