Prestashop için yeni bir modül oluşturuyorum. Ben PrestaShop rehber kullanıyorum ve bu ayarlamaya çalıştığınızda:
class MiModulo extends Module{
public function __construct(){
$this->name = "mimodulo";
$this->tab = "front_office_features";
$this->version = "1.0.0";
$this->author = "Ivan Javier Barranco Gavilan";
$this->need_instance = 0;
$this->ps_versions_compliancy = array("min" => "1.6", "max" => _PS_VERSION_);
$this->bootstrap = true;
parent::__construct();
$this->displayName = $this->l("Mi Modulo");
$this->description = $this->l("Descripcion del modulo");
$this->confirmUninstall = $this->l("¿Esta seguro de que desea desinstalar el modulo?");
if(!Configuration::get("mimodulo"))
$this->warning = $this->l("Sin nombre proporcionado");
}
}
:: l(), bunu PrestaShop göre metin dizeleri çeviren bir fonksiyonudur, ancak bu çeviriler tanıtmak gerekir değil nerede.
$ this-> l() her zaman boş bir dize döndürür.
İspanyolca bir prestashop yüklemem var. Çevirileri doğru bir şekilde nasıl yapmalıyım? Teşekkürler!
':: l()' ne? Daha fazla bilgiye ihtiyacımız var lütfen. – DevDonkey
oki, sorunumu güncellemeye gidiyorum –